• 2022-06-06
    执行下面的代码后,输出结果为( )。class test{public $data;}Sx=new test();$x->data=100;$y=$x;$y->data=10;echo $x->data;
    A: 100
    B: 10
    C: 0
    D: null