mirror of
https://github.com/php/php-src.git
synced 2025-08-19 17:04:47 +02:00
18 lines
189 B
PHP
18 lines
189 B
PHP
<?php
|
|
|
|
class my {
|
|
public function method() {
|
|
return $this;
|
|
}
|
|
}
|
|
|
|
function test2() {
|
|
echo "Hello World 2\n";
|
|
}
|
|
|
|
|
|
$my = new my();
|
|
var_dump($my->method());
|
|
|
|
return true;
|
|
?>
|