php-src/test.php

17 lines
247 B
PHP
Raw Normal View History

2013-11-10 21:01:46 +08:00
<?php
2013-11-13 17:17:58 +08:00
class phpdbg {
public function isGreat($greeting = null) {
printf(
"%s: %s\n", __METHOD__, $greeting);
return $this;
}
}
2013-11-13 17:17:58 +08:00
$dbg = new phpdbg();
2013-11-12 23:10:29 +08:00
2013-11-13 22:22:01 +08:00
$test = 1;
2013-11-13 17:17:58 +08:00
var_dump(
$dbg->isGreat("PHP Rocks !!"));
2013-11-10 21:01:46 +08:00
?>