Home
last modified time | relevance | path

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

/PHP-5.3/tests/basic/
H A Dbug46313.phpt13 Content-Disposition: form-data; name="o1'file"; filename="o1'file.png"
26 var_dump($GLOBALS["o1\'file_name"]);
27 var_dump($GLOBALS["o1\'file_name"] === $_FILES["o1\'file"]["name"]);
28 var_dump($GLOBALS["o1\'file"]);
29 var_dump($GLOBALS["o1\'file"] === $_FILES["o1\'file"]["tmp_name"]);
33 ["o1\'file"]=>
36 string(12) "o1\'file.png"
60 string(12) "o1\'file.png"
H A Dbug46313-win.phpt13 Content-Disposition: form-data; name="o1'file"; filename="o1'file.png"
26 var_dump($GLOBALS["o1\'file_name"]);
27 var_dump($GLOBALS["o1\'file_name"] === $_FILES["o1\'file"]["name"]);
28 var_dump($GLOBALS["o1\'file"]);
29 var_dump($GLOBALS["o1\'file"] === $_FILES["o1\'file"]["tmp_name"]);
35 ["o1\'file"]=>
/PHP-5.3/ext/session/tests/
H A D019.phpt28 session_register('o1', 'o2' );
30 $o1 = new TFoo(42);
31 $o2 =& $o1;
35 unset($o1);
42 $o1->inc();
54 ["o1"]=>
66 ["o1"]=>
/PHP-5.3/ext/spl/tests/
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.3/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.3/ext/standard/tests/general_functions/
H A Dvar_export_basic8.phpt12 $o1 = new stdclass;
13 $o1->p = '22';
17 $o2->x = $o1;
/PHP-5.3/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.3/Zend/
H A Dzend_closures.c85 static int zend_closure_compare_objects(zval *o1, zval *o2 TSRMLS_DC) /* {{{ */ in zend_closure_compare_objects() argument
87 return (Z_OBJ_HANDLE_P(o1) != Z_OBJ_HANDLE_P(o2)); in zend_closure_compare_objects()
H A Dzend_operators.c2052 ZEND_API void zend_compare_objects(zval *result, zval *o1, zval *o2 TSRMLS_DC) /* {{{ */ in zend_compare_objects() argument
2056 if (Z_OBJ_HANDLE_P(o1) == Z_OBJ_HANDLE_P(o2)) { in zend_compare_objects()
2061 if (Z_OBJ_HT_P(o1)->compare_objects == NULL) { in zend_compare_objects()
2064 Z_LVAL_P(result) = Z_OBJ_HT_P(o1)->compare_objects(o1, o2 TSRMLS_CC); in zend_compare_objects()
H A Dzend_operators.h322 ZEND_API void zend_compare_objects(zval *result, zval *o1, zval *o2 TSRMLS_DC);
H A Dzend_object_handlers.c1143 static int zend_std_compare_objects(zval *o1, zval *o2 TSRMLS_DC) /* {{{ */ in zend_std_compare_objects() argument
1147 zobj1 = Z_OBJ_P(o1); in zend_std_compare_objects()
/PHP-5.3/ext/spl/
H A Dspl_observer.c356 static int spl_object_storage_compare_objects(zval *o1, zval *o2 TSRMLS_DC) /* {{{ */ in spl_object_storage_compare_objects() argument
358 zend_object *zo1 = (zend_object *)zend_object_store_get_object(o1 TSRMLS_CC); in spl_object_storage_compare_objects()
H A Dspl_array.c846 static int spl_array_compare_objects(zval *o1, zval *o2 TSRMLS_DC) /* {{{ */ in spl_array_compare_objects() argument
855 intern1 = (spl_array_object*)zend_object_store_get_object(o1 TSRMLS_CC); in spl_array_compare_objects()
865 result = std_object_handlers.compare_objects(o1, o2 TSRMLS_CC); in spl_array_compare_objects()
/PHP-5.3/
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.3/ext/date/
H A Dphp_date.c2103 php_date_obj *o1 = zend_object_store_get_object(d1 TSRMLS_CC); in date_object_compare_date() local
2106 if (!o1->time || !o2->time) { in date_object_compare_date()
2110 if (!o1->time->sse_uptodate) { in date_object_compare_date()
2111 timelib_update_ts(o1->time, o1->time->tz_info); in date_object_compare_date()
2117 return (o1->time->sse == o2->time->sse) ? 0 : ((o1->time->sse < o2->time->sse) ? -1 : 1); in date_object_compare_date()
/PHP-5.3/ext/pcre/pcrelib/
H A DNEWS35 times, each one causes appropriate output. For example, -o1 -o2 outputs the
H A DChangeLog80 times, each one causes appropriate output. For example, -o1 -o2 outputs the

Completed in 157 milliseconds