swig/Examples/test-suite/php/prefix_runme.php
2022-01-21 11:08:24 +13:00

18 lines
341 B
PHP

<?php
require "tests.php";
// New functions
check::functions(array('self'));
// New classes
check::classes(array('Project','ProjectBar','ProjectFoo'));
// No new vars
check::globals(array());
$f = new ProjectFoo();
// This resulted in "Fatal error: Class 'Foo' not found"
$f->get_self();
Project::self(new ProjectBar());
check::done();