1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 19:52:20 +02:00
Files
archived-php-src/test.php
2013-11-12 11:07:35 -02:00

19 lines
204 B
PHP

<?php
class my {
public function method() {
return $this;
}
}
function test2() {
echo "Hello World 2\n";
}
$my = new my();
var_dump($my->method());
phpdbg_break();
return true;
?>