/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/test-suite/php/prefix_runme.php
18 строк
341 B
Olly Betts
[php] Use -prefix setting in type declarations
21 янв 2022, 01:08
21 янв 2022, 01:08
d43f28a
Код
Авторство
О чём код?
<?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();