Lines Matching refs:x
5 function f($x) {
6 return $x;
38 $x = new foo();
42 $z = $x->const_get;
44 $x->const_set = 1;
46 $x->const_call();
50 $z = $x["const_dim_get"];
52 $x["const_dim_set"] = 1;
54 isset($x["const_dim_isset"]);
56 unset($x["const_dim_unset"]);
60 $z = $x->{1};
62 $x->{2} = 1;
67 $z = $x->{$c."_get"};
69 $x->{$c."_set"} = 1;
71 $x->{$c."_call"}();
73 $z = $x[$c."_dim_get"];
75 $x[$c."_dim_set"] = 1;
77 isset($x[$c."_dim_isset"]);
79 unset($x[$c."_dim_unset"]);
84 $z = $x->{$c+3};
86 $x->{$c+4} = 1;
91 $z = $x->{$c};
94 $x->{$c} = 1;
97 $x->{$c}();
100 $z = $x[$c];
103 $x[$c] = 1;
106 isset($x[$c]);
109 unset($x[$c]);
114 $z = $x->{$c};
117 $x->{$c} = 1;
121 $z = $x->{f("var_get")};
123 $x->{f("var_set")} = 1;
125 $x->{f("var_call")}();
127 $z = $x[f("var_dim_get")];
129 $x[f("var_dim_set")] = 1;
131 isset($x[f("var_dim_isset")]);
133 unset($x[f("var_dim_unset")]);
137 $z = $x->{f(7)};
139 $x->{f(8)} = 1;