Home
last modified time | relevance | path

Searched refs:o2 (Results 1 – 25 of 28) sorted by relevance

12

/PHP-5.5/ext/spl/tests/
H A Dbug45826.phpt24 $o2 = new ArrayObject();
25 $o2->unserialize($s2);
27 var_dump($o2[0] === $o2[1]);
28 var_dump($o2[2] !== $o2);
29 var_dump($o2[2][2] === $o2[2]);
32 unset($o,$x,$s1,$s2,$o1,$o2);
62 $o2 = new ArrayObject2();
63 $o2->unserialize($s2);
65 var_dump($o2[0] === $o2[1]);
66 var_dump($o2[2] !== $o2);
[all …]
H A DSplObjectStorage_getHash.phpt7 $o2 = new Stdclass;
33 $s2[$o2] = "foo";
47 $s3[$o2] = $o2;
49 var_dump($s3[$o1] === $s3[$o2]);
H A Dbug49263.phpt8 $o2 = new stdClass;
12 $s->attach($o1, array('prev' => 2, 'next' => $o2));
13 $s->attach($o2, array('prev' => $o1));
16 unset($s,$o1,$o2);
H A Dobserver_008.phpt8 $o2 = new StdClass;
13 $a->attach($o2);
16 $b->attach($o2);
H A Dbug53144.phpt7 $o2 = new StdClass;
11 $b[$o2] = "baz";
/PHP-5.5/ext/session/tests/
H A D019.phpt30 $_SESSION["o2"] =& $_SESSION["o1"];
35 unset($_SESSION["o2"]);
42 $_SESSION["o2"]->inc();
56 ["o2"]=>
68 ["o2"]=>
/PHP-5.5/tests/classes/
H A Dclone_004.phpt30 $o2 = clone $o1;
31 $o2->show();
34 $o2->a = 5;
35 $o2->b = 6;
36 $o2->show();
H A Ddestructor_and_references.phpt12 $o2 = new test2;
/PHP-5.5/ext/standard/tests/general_functions/
H A Dvar_export_basic8.phpt14 $o2 = new stdclass;
15 $o2->a = 1;
16 $o2->b = array('k'=>2);
17 $o2->x = $o1;
18 var_export($o2);
26 $b = array('foo' => $a, 'bar' => $o2);
/PHP-5.5/ext/intl/tests/
H A Dbreakiter_factories_basic.phpt17 $o1 = $o2 = null;
21 var_dump($o1 == $o2);
22 $o2 = call_user_func(array('IntlBreakIterator', $method), NULL);
23 var_dump($o1 == $o2);
/PHP-5.5/Zend/tests/
H A Dbug52614.phpt10 public $o2;
30 $this->o2 = new stdClass;
31 return $this->o2;
59 var_dump($foo->o2);
/PHP-5.5/ext/standard/tests/array/
H A Dasort_basic.phpt25 "O" => "Orange", "O1" => "Orange1", "o2" => "orange2", "O3" => "Orange3", "o20" => "orange20",
96 ["o2"]=>
130 ["o2"]=>
164 ["o2"]=>
183 ["o2"]=>
206 ["o2"]=>
225 ["o2"]=>
H A Darsort_basic.phpt25 "O" => "Orange", "O1" => "Orange1", "o2" => "orange2", "O3" => "Orange3", "o20" => "orange20",
86 ["o2"]=>
120 ["o2"]=>
154 ["o2"]=>
177 ["o2"]=>
196 ["o2"]=>
219 ["o2"]=>
H A Dkrsort_basic.phpt25 "O" => "Orange", "O1" => "Orange1", "o2" => "orange2", "O3" => "Orange3", "o20" => "orange20",
86 ["o2"]=>
120 ["o2"]=>
154 ["o2"]=>
177 ["o2"]=>
196 ["o2"]=>
219 ["o2"]=>
H A Dksort_basic.phpt23 "O" => "Orange", "O1" => "Orange1", "o2" => "orange2", "O3" => "Orange3", "o20" => "orange20",
94 ["o2"]=>
128 ["o2"]=>
162 ["o2"]=>
H A Drsort_basic.phpt19 "O" => "Orange", "O1" => "Orange1", "o2" => "orange2", "O3" => "Orange3", "o20" => "orange20",
H A Dsort_basic.phpt25 "O" => "Orange", "O1" => "Orange1", "o2" => "orange2", "O3" => "Orange3", "o20" => "orange20",
/PHP-5.5/tests/lang/
H A Dengine_assignExecutionOrder_001.phpt33 $ob->o1->o2 = new stdClass;
34 $ob->o1->o2->${f()} = g();
107 [%u|b%"o2"]=>
/PHP-5.5/Zend/
H A Dzend_object_handlers.c1345 static int zend_std_compare_objects(zval *o1, zval *o2 TSRMLS_DC) /* {{{ */ in zend_std_compare_objects()
1350 zobj2 = Z_OBJ_P(o2); in zend_std_compare_objects()
1359 Z_OBJ_PROTECT_RECURSION(o2); in zend_std_compare_objects()
1367 Z_OBJ_UNPROTECT_RECURSION(o2); in zend_std_compare_objects()
1372 Z_OBJ_UNPROTECT_RECURSION(o2); in zend_std_compare_objects()
1377 Z_OBJ_UNPROTECT_RECURSION(o2); in zend_std_compare_objects()
1383 Z_OBJ_UNPROTECT_RECURSION(o2); in zend_std_compare_objects()
1389 Z_OBJ_UNPROTECT_RECURSION(o2); in zend_std_compare_objects()
H A Dzend_closures.c147 static int zend_closure_compare_objects(zval *o1, zval *o2 TSRMLS_DC) /* {{{ */ in zend_closure_compare_objects()
149 return (Z_OBJ_HANDLE_P(o1) != Z_OBJ_HANDLE_P(o2)); in zend_closure_compare_objects()
H A Dzend_operators.c2230 ZEND_API void zend_compare_objects(zval *result, zval *o1, zval *o2 TSRMLS_DC) /* {{{ */
2234 if (Z_OBJ_HANDLE_P(o1) == Z_OBJ_HANDLE_P(o2)) {
2242 Z_LVAL_P(result) = Z_OBJ_HT_P(o1)->compare_objects(o1, o2 TSRMLS_CC);
/PHP-5.5/
H A Dserver-tests.php132 $o2 = array();
134 foreach($o1 as $idx => $val) $o2[sprintf("%03d>",$idx)] = sprintf("%03d+ ", $idx+1).$val;
135 $diff = array_merge($w2, $o2);
/PHP-5.5/ext/spl/
H A Dspl_observer.c407 static int spl_object_storage_compare_objects(zval *o1, zval *o2 TSRMLS_DC) /* {{{ */ in spl_object_storage_compare_objects()
410 zend_object *zo2 = (zend_object *)zend_object_store_get_object(o2 TSRMLS_CC); in spl_object_storage_compare_objects()
H A Dspl_array.c902 static int spl_array_compare_objects(zval *o1, zval *o2 TSRMLS_DC) /* {{{ */ in spl_array_compare_objects()
912 intern2 = (spl_array_object*)zend_object_store_get_object(o2 TSRMLS_CC); in spl_array_compare_objects()
921 result = std_object_handlers.compare_objects(o1, o2 TSRMLS_CC); in spl_array_compare_objects()
/PHP-5.5/ext/date/
H A Dphp_date.c2178 php_date_obj *o2 = zend_object_store_get_object(d2 TSRMLS_CC); in date_object_compare_date() local
2180 if (!o1->time || !o2->time) { in date_object_compare_date()
2187 if (!o2->time->sse_uptodate) { in date_object_compare_date()
2188 timelib_update_ts(o2->time, o2->time->tz_info); in date_object_compare_date()
2191 return (o1->time->sse == o2->time->sse) ? 0 : ((o1->time->sse < o2->time->sse) ? -1 : 1); in date_object_compare_date()

Completed in 64 milliseconds

12