swig/Examples/test-suite/php/director_unroll_runme.php
Olly Betts 40da8bcbb6 php: Wrap classes using only swig_object_wrapper
We no longer use PHP resources to wrap classes, and the proxy classes no
longer has a _cPtr property.
2021-04-04 07:45:20 +12:00

27 lines
489 B
PHP

<?php
require "tests.php";
require "director_unroll.php";
// No new functions
check::functions(array('foo_ping','foo_pong'));
// No new classes
check::classes(array('Foo','Bar'));
class MyFoo extends Foo {
function ping() {
return "MyFoo::ping()";
}
}
$a = new MyFoo();
$b = new Bar();
$b->set($a);
$c = $b->get();
// FIXME: The python version checks that a.this == c.this, but we don't seem
// to have a way to check this with the PHP bindings we generate.
check::done();