Uname:
Linux yisu-647059427c03a 3.10.0-862.14.4.el7.x86_64 #1 SMP Wed Sep 26 15:12:11 UTC 2018 x86_64
Software:
nginx/1.22.1
PHP version:
7.3.31 [ PHP INFO ] PHP os:
Linux
Server Ip:
103.146.158.90
Your Ip:
216.73.216.141
User:
www (1000) | Group:
www (1000)
Safe Mode:
OFF
Disable Function:
passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
--TEST--
SPL: ArrayObject: ensure the magic methods for property access of a subclass of ArrayObject are not invoked when manipulating its elements using -> ArrayObject::ARRAY_AS_PROPS.
--FILE--
<?php
class C {
public $a = 1;
public $b = 2;
public $c = 3;
private $priv = 'secret';
}
class UsesMagic extends ArrayObject {
public $b = "This should never appear in storage";
function __get($name) {
$args = func_get_args();
echo "In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
}
function __set($name, $value) {
$args = func_get_args();
echo "In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
}
function __isset($name) {
$args = func_get_args();
echo "In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
}
function __unset($name) {
$args = func_get_args();
echo "In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
}
}
$obj = new C;
$ao = new UsesMagic($obj, ArrayObject::ARRAY_AS_PROPS);
echo "\n--> Write existent, non-existent and dynamic:\n";
$ao->a = 'changed';
$ao->dynamic = 'new';
$ao->dynamic = 'new.changed';
echo " Original wrapped object:\n";
var_dump($obj);
echo " Wrapping ArrayObject:\n";
var_dump($ao);
echo "\n--> Read existent, non-existent and dynamic:\n";
var_dump($ao->a);
var_dump($ao->nonexistent);
var_dump($ao->dynamic);
echo " Original wrapped object:\n";
var_dump($obj);
echo " Wrapping ArrayObject:\n";
var_dump($ao);
echo "\n--> isset existent, non-existent and dynamic:\n";
var_dump(isset($ao->a));
var_dump(isset($ao->nonexistent));
var_dump(isset($ao->dynamic));
echo " Original wrapped object:\n";
var_dump($obj);
echo " Wrapping ArrayObject:\n";
var_dump($ao);
echo "\n--> Unset existent, non-existent and dynamic:\n";
unset($ao->a);
unset($ao->nonexistent);
unset($ao->dynamic);
echo " Original wrapped object:\n";
var_dump($obj);
echo " Wrapping ArrayObject:\n";
var_dump($ao);
?>
--EXPECTF--
--> Write existent, non-existent and dynamic:
Original wrapped object:
object(C)#1 (5) {
["a"]=>
string(7) "changed"
["b"]=>
int(2)
["c"]=>
int(3)
["priv":"C":private]=>
string(6) "secret"
["dynamic"]=>
string(11) "new.changed"
}
Wrapping ArrayObject:
object(UsesMagic)#2 (2) {
["b"]=>
string(35) "This should never appear in storage"
["storage":"ArrayObject":private]=>
object(C)#1 (5) {
["a"]=>
string(7) "changed"
["b"]=>
int(2)
["c"]=>
int(3)
["priv":"C":private]=>
string(6) "secret"
["dynamic"]=>
string(11) "new.changed"
}
}
--> Read existent, non-existent and dynamic:
string(7) "changed"
Notice: Undefined index: nonexistent in %s on line 45
NULL
string(11) "new.changed"
Original wrapped object:
object(C)#1 (5) {
["a"]=>
string(7) "changed"
["b"]=>
int(2)
["c"]=>
int(3)
["priv":"C":private]=>
string(6) "secret"
["dynamic"]=>
string(11) "new.changed"
}
Wrapping ArrayObject:
object(UsesMagic)#2 (2) {
["b"]=>
string(35) "This should never appear in storage"
["storage":"ArrayObject":private]=>
object(C)#1 (5) {
["a"]=>
string(7) "changed"
["b"]=>
int(2)
["c"]=>
int(3)
["priv":"C":private]=>
string(6) "secret"
["dynamic"]=>
string(11) "new.changed"
}
}
--> isset existent, non-existent and dynamic:
bool(true)
bool(false)
bool(true)
Original wrapped object:
object(C)#1 (5) {
["a"]=>
string(7) "changed"
["b"]=>
int(2)
["c"]=>
int(3)
["priv":"C":private]=>
string(6) "secret"
["dynamic"]=>
string(11) "new.changed"
}
Wrapping ArrayObject:
object(UsesMagic)#2 (2) {
["b"]=>
string(35) "This should never appear in storage"
["storage":"ArrayObject":private]=>
object(C)#1 (5) {
["a"]=>
string(7) "changed"
["b"]=>
int(2)
["c"]=>
int(3)
["priv":"C":private]=>
string(6) "secret"
["dynamic"]=>
string(11) "new.changed"
}
}
--> Unset existent, non-existent and dynamic:
Notice: Undefined index: nonexistent in %s on line 63
Original wrapped object:
object(C)#1 (3) {
["b"]=>
int(2)
["c"]=>
int(3)
["priv":"C":private]=>
string(6) "secret"
}
Wrapping ArrayObject:
object(UsesMagic)#2 (2) {
["b"]=>
string(35) "This should never appear in storage"
["storage":"ArrayObject":private]=>
object(C)#1 (3) {
["b"]=>
int(2)
["c"]=>
int(3)
["priv":"C":private]=>
string(6) "secret"
}
}