Skip to content

Instantly share code, notes, and snippets.

@chobie
Created April 29, 2012 13:32
Show Gist options
  • Save chobie/2550467 to your computer and use it in GitHub Desktop.
Save chobie/2550467 to your computer and use it in GitHub Desktop.
niyoniyo
<?php
$mruby = new MRuby();
function niyoniyo(MrubyObject $niyo)
{
var_dump($niyo->say);
}
$mruby->run(<<<'EOH'
require 'php'
class Niyoniyo
def initialize
end
def say
"niyoniyo"
end
end
niyo = Niyoniyo.new
PHP::call_user_func "niyoniyo", niyo
EOH
);
// will display
// string(8) "niyoniyo"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment