mirror of
https://github.com/php/php-src.git
synced 2024-12-24 09:18:17 +08:00
ded3d984c6
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
40 lines
778 B
PHP
40 lines
778 B
PHP
--TEST--
|
|
Bug #53748 (Using traits lead to a segmentation fault)
|
|
--FILE--
|
|
<?php
|
|
|
|
trait Singleton {
|
|
protected static $instances=array();
|
|
abstract protected function __construct($config);
|
|
public static function getInstance($config) {
|
|
if (!isset(self::$instances[$serialize = serialize($config)])) {
|
|
self::$instances[$serialize] = new self($config);
|
|
}
|
|
return self::$instances[$serialize];
|
|
}
|
|
}
|
|
|
|
class MyHelloWorld {
|
|
use Singleton;
|
|
public function __construct($config)
|
|
{
|
|
var_dump( $config);
|
|
}
|
|
}
|
|
|
|
|
|
$o= myHelloWorld::getInstance(1);
|
|
$o= myHelloWorld::getInstance(1);
|
|
$o= myHelloWorld::getInstance(2);
|
|
$o= myHelloWorld::getInstance(array(1=>2));
|
|
$o= myHelloWorld::getInstance(array(1=>2));
|
|
|
|
?>
|
|
--EXPECT--
|
|
int(1)
|
|
int(2)
|
|
array(1) {
|
|
[1]=>
|
|
int(2)
|
|
}
|