php-src/Zend/tests/023.phpt

46 lines
523 B
Plaintext
Raw Normal View History

2008-04-17 18:16:17 +00:00
--TEST--
Testing variable variables as function name
--FILE--
<?php
$a = 'ucfirst';
$b = 'a';
print $$b('test');
print "\n";
class bar {
2020-02-03 21:52:20 +00:00
public function a() {
return "bar!";
}
2008-04-17 18:16:17 +00:00
}
class foo {
2020-02-03 21:52:20 +00:00
public function test() {
print "foo!\n";
return new bar;
}
2008-04-17 18:16:17 +00:00
}
function test() {
2020-02-03 21:52:20 +00:00
return new foo;
2008-04-17 18:16:17 +00:00
}
$a = 'test';
$b = 'a';
var_dump($$b()->$$b()->$b());
$a = 'strtoupper';
$b = 'a';
$c = 'b';
$d = 'c';
var_dump($$$$d('foo'));
?>
--EXPECT--
Test
foo!
string(4) "bar!"
string(3) "FOO"