mirror of
https://github.com/php/php-src.git
synced 2025-08-18 23:18:56 +02:00
16 lines
247 B
PHP
16 lines
247 B
PHP
<?php
|
|
class phpdbg {
|
|
public function isGreat($greeting = null) {
|
|
printf(
|
|
"%s: %s\n", __METHOD__, $greeting);
|
|
return $this;
|
|
}
|
|
}
|
|
|
|
$dbg = new phpdbg();
|
|
|
|
$test = 1;
|
|
|
|
var_dump(
|
|
$dbg->isGreat("PHP Rocks !!"));
|
|
?>
|