1
0
mirror of https://github.com/php/php-src.git synced 2026-03-31 12:42:29 +02:00
Files
archived-php-src/test.php
2013-11-13 01:35:39 +00:00

20 lines
211 B
PHP

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