mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
37 lines
625 B
PHP
37 lines
625 B
PHP
--TEST--
|
|
$this in constructor test
|
|
--FILE--
|
|
<?php
|
|
class foo {
|
|
function foo($name) {
|
|
$GLOBALS['List']= &$this;
|
|
$this->Name = $name;
|
|
$GLOBALS['List']->echoName();
|
|
}
|
|
|
|
function echoName() {
|
|
$GLOBALS['names'][]=$this->Name;
|
|
}
|
|
}
|
|
|
|
function &foo2(&$foo) {
|
|
return $foo;
|
|
}
|
|
|
|
|
|
$bar1 =new foo('constructor');
|
|
$bar1->Name = 'outside';
|
|
$bar1->echoName();
|
|
$List->echoName();
|
|
|
|
$bar1 =& foo2(new foo('constructor'));
|
|
$bar1->Name = 'outside';
|
|
$bar1->echoName();
|
|
|
|
$List->echoName();
|
|
|
|
print ($names==array('constructor','outside','outside','constructor','outside','outside')) ? 'success':'failure';
|
|
?>
|
|
--EXPECT--
|
|
success
|