mirror of
https://github.com/php/php-src.git
synced 2024-11-28 04:14:26 +08:00
42 lines
513 B
Plaintext
42 lines
513 B
Plaintext
|
<?
|
||
|
|
||
|
class foo {
|
||
|
function foo($a,$b) {
|
||
|
$a *= 3;
|
||
|
return $a+$b;
|
||
|
}
|
||
|
function bar(&$blah, $foobar=7) {
|
||
|
$foobar += 19;
|
||
|
}
|
||
|
|
||
|
function hello_world() {
|
||
|
return "Hello, World!";
|
||
|
}
|
||
|
|
||
|
function print_string($str) {
|
||
|
print "$str\n";
|
||
|
return 666;
|
||
|
}
|
||
|
var $foo;
|
||
|
var $bar="this is a test...";
|
||
|
};
|
||
|
|
||
|
class bar {
|
||
|
function foo($a,$b) {
|
||
|
$a *= 3;
|
||
|
return $a+$b;
|
||
|
}
|
||
|
function bar(&$blah, $foobar=7) {
|
||
|
$foobar += 19;
|
||
|
}
|
||
|
|
||
|
var $foo;
|
||
|
var $bar="this is a test...";
|
||
|
};
|
||
|
|
||
|
|
||
|
$b = new foo;
|
||
|
$a = &$b;
|
||
|
$b->asd = 5;
|
||
|
print $b->asd;
|