Lines Matching refs:x
5 function f($x) {
6 return $x;
36 $x = new foo();
40 $z = $x->const_get;
42 $x->const_set = 1;
44 $x->const_call();
48 $z = $x["const_dim_get"];
50 $x["const_dim_set"] = 1;
52 isset($x["const_dim_isset"]);
54 unset($x["const_dim_unset"]);
58 $z = $x->{1};
60 $x->{2} = 1;
65 $z = $x->{$c."_get"};
67 $x->{$c."_set"} = 1;
69 $x->{$c."_call"}();
71 $z = $x[$c."_dim_get"];
73 $x[$c."_dim_set"] = 1;
75 isset($x[$c."_dim_isset"]);
77 unset($x[$c."_dim_unset"]);
82 $z = $x->{$c+3};
84 $x->{$c+4} = 1;
89 $z = $x->{$c};
92 $x->{$c} = 1;
95 $x->{$c}();
98 $z = $x[$c];
101 $x[$c] = 1;
104 isset($x[$c]);
107 unset($x[$c]);
112 $z = $x->{$c};
115 $x->{$c} = 1;
119 $z = $x->{f("var_get")};
121 $x->{f("var_set")} = 1;
123 $x->{f("var_call")}();
125 $z = $x[f("var_dim_get")];
127 $x[f("var_dim_set")] = 1;
129 isset($x[f("var_dim_isset")]);
131 unset($x[f("var_dim_unset")]);
135 $z = $x->{f(7)};
137 $x->{f(8)} = 1;