php-src/test.php

20 lines
211 B
PHP
Raw Normal View History

2013-11-10 13:01:46 +00:00
<?php
2013-11-11 15:14:37 +00:00
class my {
public function method() {
2013-11-13 01:35:39 +00:00
echo "Hello";
return $this;
}
}
2013-11-10 21:07:29 +00:00
function test2() {
echo "Hello World 2\n";
}
2013-11-10 21:28:12 +00:00
$my = new my();
var_dump($my->method());
2013-11-12 15:10:29 +00:00
2013-11-10 16:47:39 +00:00
return true;
2013-11-10 13:01:46 +00:00
?>