Lines Matching refs:x
8 protected $x;
13 static function factory($x) {
17 test::$test = new test($x);
22 protected function __construct($x) {
24 $this->x = $x;
36 return $this->x;
41 return test::$test->x;
56 echo "Create x and y\n";
57 $x = test::factory(1);
61 var_dump($x->get());
64 echo "Destruct x\n";
65 $x = NULL;
86 Create x and y
91 Destruct x