Home
last modified time | relevance | path

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

/PHP-5.5/ext/spl/tests/
H A DSplObjectStorage_getHash.phpt6 $o1 = new Stdclass;
8 $s[$o1] = "some_value\n";
9 echo $s->offsetGet($o1);
19 $s1[$o1] = "foo";
45 $s3[$o1] = $o1;
46 var_dump($s3[$o1]);
49 var_dump($s3[$o1] === $s3[$o2]);
H A Dbug45826.phpt19 $o1 =unserialize($s1);
21 var_dump($o1[0] === $o1[1]);
22 var_dump($o1[2] === $o1);
32 unset($o,$x,$s1,$s2,$o1,$o2);
57 $o1 =unserialize($s1);
59 var_dump($o1[0] === $o1[1]);
60 var_dump($o1[2] === $o1);
H A DSplObjectStorage_offsetGet.phpt9 $o1 = new stdClass();
10 $s[$o1] = 'some_value';
12 echo $s->offsetGet($o1);
H A Dbug49263.phpt7 $o1 = 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 Dbug53144.phpt6 $o1 = new StdClass;
10 $b[$o1] = "bar";
H A DSplObjectStorage_offsetGet_missing_object.phpt9 $o1 = new stdClass();
12 $s->offsetGet($o1);
H A Dobserver_008.phpt7 $o1 = new StdClass;
12 $a->attach($o1);
H A DSplObjectStorage_offsetGet_invalid_parameter.phpt20 $o1 = new stdClass();
21 $s[$o1] = 'some_value';
/PHP-5.5/ext/session/tests/
H A D019.phpt29 $_SESSION["o1"] = new TFoo(42);
30 $_SESSION["o2"] =& $_SESSION["o1"];
34 unset($_SESSION["o1"]);
41 $_SESSION["o1"]->inc();
51 ["o1"]=>
63 ["o1"]=>
/PHP-5.5/tests/classes/
H A Dclone_004.phpt24 $o1 = new test;
25 $o1->a = array(1,2);
26 $o1->b = array(3,4);
27 $o1->show();
30 $o2 = clone $o1;
H A Ddestructor_and_references.phpt11 $o1 = new test1;
18 $r1 = &$o1;
/PHP-5.5/ext/intl/tests/
H A Dbreakiter_factories_basic.phpt17 $o1 = $o2 = null;
20 $o1 = call_user_func(array('IntlBreakIterator', $method), 'ja');
21 var_dump($o1 == $o2);
23 var_dump($o1 == $o2);
/PHP-5.5/Zend/tests/
H A Dbug52614.phpt9 public $o1;
26 return $this->o1;
56 var_dump($foo->o1);
/PHP-5.5/ext/standard/tests/general_functions/
H A Dvar_export_basic8.phpt12 $o1 = new stdclass;
13 $o1->p = '22';
17 $o2->x = $o1;
/PHP-5.5/tests/lang/
H A Dengine_assignExecutionOrder_001.phpt32 $ob->o1 = new stdClass;
33 $ob->o1->o2 = new stdClass;
34 $ob->o1->o2->${f()} = g();
105 [%u|b%"o1"]=>
/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() argument
1349 zobj1 = Z_OBJ_P(o1); in zend_std_compare_objects()
1358 Z_OBJ_PROTECT_RECURSION(o1); in zend_std_compare_objects()
1366 Z_OBJ_UNPROTECT_RECURSION(o1); in zend_std_compare_objects()
1371 Z_OBJ_UNPROTECT_RECURSION(o1); in zend_std_compare_objects()
1376 Z_OBJ_UNPROTECT_RECURSION(o1); in zend_std_compare_objects()
1382 Z_OBJ_UNPROTECT_RECURSION(o1); in zend_std_compare_objects()
1388 Z_OBJ_UNPROTECT_RECURSION(o1); 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() argument
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) /* {{{ */ argument
2234 if (Z_OBJ_HANDLE_P(o1) == Z_OBJ_HANDLE_P(o2)) {
2239 if (Z_OBJ_HT_P(o1)->compare_objects == NULL) {
2242 Z_LVAL_P(result) = Z_OBJ_HT_P(o1)->compare_objects(o1, o2 TSRMLS_CC);
H A Dzend_operators.h373 ZEND_API void zend_compare_objects(zval *result, zval *o1, zval *o2 TSRMLS_DC);
/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() argument
409 zend_object *zo1 = (zend_object *)zend_object_store_get_object(o1 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() argument
911 intern1 = (spl_array_object*)zend_object_store_get_object(o1 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.c2177 php_date_obj *o1 = zend_object_store_get_object(d1 TSRMLS_CC); in date_object_compare_date() local
2180 if (!o1->time || !o2->time) { in date_object_compare_date()
2184 if (!o1->time->sse_uptodate) { in date_object_compare_date()
2185 timelib_update_ts(o1->time, o1->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()
/PHP-5.5/
H A Dserver-tests.php130 $o1 = array_diff_assoc($o,$w);
134 foreach($o1 as $idx => $val) $o2[sprintf("%03d>",$idx)] = sprintf("%03d+ ", $idx+1).$val;
/PHP-5.5/ext/pcre/pcrelib/
H A DNEWS140 times, each one causes appropriate output. For example, -o1 -o2 outputs the
H A DChangeLog1016 times, each one causes appropriate output. For example, -o1 -o2 outputs the

Completed in 66 milliseconds