Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /usr/local/src/php7/php-7.0.5/ext/spl/tests/ |
Current File : //usr/local/src/php7/php-7.0.5/ext/spl/tests/array_003.phpt |
--TEST-- SPL: ArrayObject from object --FILE-- <?php // This test also needs to exclude the protected and private variables // since they cannot be accessed from the external object which iterates // them. class test { public $pub = "public"; protected $pro = "protected"; private $pri = "private"; function __construct() { $this->imp = "implicit"; } }; $test = new test; $test->dyn = "dynamic"; print_r($test); $object = new ArrayObject($test); print_r($object); foreach($test as $key => $val) { echo "$key => $val\n"; } ?> ===DONE=== <?php exit(0); ?> --EXPECTF-- test Object ( [pub] => public [pro:protected] => protected [pri:test:private] => private [imp] => implicit [dyn] => dynamic ) ArrayObject Object ( [storage:ArrayObject:private] => test Object ( [pub] => public [pro:protected] => protected [pri:test:private] => private [imp] => implicit [dyn] => dynamic ) ) pub => public imp => implicit dyn => dynamic ===DONE===
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare