Home
last modified time | relevance | path

Searched refs:obj (Results 326 – 350 of 413) sorted by relevance

1...<<11121314151617

/PHP-5.6/ext/standard/tests/strings/
H A Dstripcslashes_variation1.phpt25 return "obj'ct";
164 string(6) "obj'ct"
H A Dstripslashes_variation1.phpt24 return "obj\'ct";
163 string(6) "obj'ct"
H A Daddslashes_variation1.phpt24 return "obj'ct";
162 string(7) "obj\'ct"
H A Dstrtok_variation1.phpt25 return "obj-ect";
157 string(3) "obj"
H A Dimplode1.phpt79 $obj = new foo(); //creating new object
81 $arr[0] = &$obj;
82 $arr[1] = &$obj;
/PHP-5.6/ext/pdo_mysql/tests/
H A Dpdo_mysql_errorinfo.phpt16 function check_error($offset, &$obj, $expected = '00000') {
17 $info = $obj->errorInfo();
H A Dpdo_mysql_stmt_fetch_serialize_simple.phpt41 $obj = new myclass('Called by script');
42 $tmp = unserialize(serialize($obj));
/PHP-5.6/ext/standard/tests/general_functions/
H A Dprint_r.phpt204 $obj = new contains_object_class;
215 $obj,
216 $obj->class_object1,
217 $obj->class_object2,
218 $obj->no_member_class_object,
228 $recursion_obj1->obj = &$recursion_obj2; //circular reference
229 $recursion_obj2->obj = &$recursion_obj1; //circular reference
1472 [obj] => object_class Object
1481 [obj] => object_class Object
H A Dprint_r_64bit.phpt205 $obj = new contains_object_class;
216 $obj,
217 $obj->class_object1,
218 $obj->class_object2,
219 $obj->no_member_class_object,
229 $recursion_obj1->obj = &$recursion_obj2; //circular reference
230 $recursion_obj2->obj = &$recursion_obj1; //circular reference
1473 [obj] => object_class Object
1482 [obj] => object_class Object
H A Dvar_dump_64bit.phpt198 $obj = new contains_object_class;
209 $obj,
210 $obj->class_object1,
211 $obj->class_object2,
212 $obj->no_member_class_object,
223 $recursion_obj1->obj = &$recursion_obj2; //circular reference
224 $recursion_obj2->obj = &$recursion_obj1; //circular reference
825 ["obj"]=>
841 ["obj"]=>
H A Dvar_dump.phpt198 $obj = new contains_object_class;
209 $obj,
210 $obj->class_object1,
211 $obj->class_object2,
212 $obj->no_member_class_object,
223 $recursion_obj1->obj = &$recursion_obj2; //circular reference
224 $recursion_obj2->obj = &$recursion_obj1; //circular reference
825 ["obj"]=>
841 ["obj"]=>
/PHP-5.6/ext/json/tests/
H A Dpass001.phpt75 $obj = json_decode($test);
76 var_dump($obj);
82 $obj_enc = json_encode($obj, JSON_PARTIAL_OUTPUT_ON_ERROR);
89 $obj = json_decode($obj_enc);
90 var_dump($obj);
/PHP-5.6/
H A DREADME.PARAMETER_PARSING_API127 zval *obj;
131 &obj, my_ce, &d) == FAILURE) {
137 If null is passed for object, obj will be set to NULL. */
138 zval *obj;
141 &obj, &arr) == FAILURE) {
/PHP-5.6/ext/standard/tests/serialize/
H A Dserialization_objects_011.phpt53 function prettyPrint($obj) {
55 var_dump($obj);
58 $ser = serialize($obj);
/PHP-5.6/Zend/
H A Dzend_exceptions.c157 zval obj; in zend_default_exception_new_ex() local
161 Z_OBJVAL(obj) = zend_objects_new(&object, class_type TSRMLS_CC); in zend_default_exception_new_ex()
162 Z_OBJ_HT(obj) = &default_exception_handlers; in zend_default_exception_new_ex()
171 …zend_update_property_string(default_exception_ce, &obj, "file", sizeof("file")-1, zend_get_execute… in zend_default_exception_new_ex()
172 …zend_update_property_long(default_exception_ce, &obj, "line", sizeof("line")-1, zend_get_executed_… in zend_default_exception_new_ex()
173 zend_update_property(default_exception_ce, &obj, "trace", sizeof("trace")-1, trace TSRMLS_CC); in zend_default_exception_new_ex()
175 return Z_OBJVAL(obj); in zend_default_exception_new_ex()
H A Dzend_objects_API.h44 } obj; member
/PHP-5.6/ext/standard/tests/class_object/
H A Dget_object_vars_basic_002.phpt5 /* Prototype : proto array get_object_vars(object obj)
/PHP-5.6/ext/mysqli/tests/
H A Dmysqli_class_mysqli_warning.phpt31 $obj = new stdClass();
32 $warning = new mysqli_warning($obj);
/PHP-5.6/ext/intl/converter/
H A Dconverter.c27 zend_object obj; member
41 #define THROW_UFAILURE(obj, fname, error) php_converter_throw_failure(obj, error TSRMLS_CC, \ argument
373 if (objval->obj.ce == php_converter_ce) { in php_converter_set_callbacks()
1046 zend_object_std_dtor(&(objval->obj) TSRMLS_CC); in php_converter_free_object()
1056 objval->obj.ce = ce; in php_converter_object_ctor()
1074 object_properties_init(&(objval->obj), ce); in php_converter_create_object()
1106 …zend_objects_clone_members(&(objval->obj), retval, &(oldobj->obj), Z_OBJ_HANDLE_P(object) TSRMLS_C… in php_converter_clone_object()
/PHP-5.6/ext/dom/
H A Dnamednodemap.c86 int dom_namednodemap_length_read(dom_object *obj, zval **retval TSRMLS_DC) in dom_namednodemap_length_read() argument
93 objmap = (dom_nnodemap_object *)obj->ptr; in dom_namednodemap_length_read()
/PHP-5.6/ext/opcache/tests/
H A Dcompact_literals.phpt113 function change(&$obj) {
114 $obj = new CH;
/PHP-5.6/ext/xml/tests/
H A Dxml_set_object_variation1.phpt11 /* Prototype : proto int xml_set_object(resource parser, object &obj)
26 $obj = new aClass();
92 var_dump( xml_set_object($value, $obj) );
/PHP-5.6/tests/lang/
H A DforeachLoopObjects.002.phpt21 static function doForEach($obj) {
23 foreach ($obj as $k=>&$v) {
44 static function doForEach($obj) {
46 foreach ($obj as $k=>&$v) {
68 static function doForEach($obj) {
70 foreach ($obj as $k=>&$v) {
/PHP-5.6/ext/spl/
H A Dspl_fixedarray.c150 static HashTable* spl_fixedarray_object_get_gc(zval *obj, zval ***table, int *n TSRMLS_DC) /* {{{{ … in spl_fixedarray_object_get_gc() argument
152 …spl_fixedarray_object *intern = (spl_fixedarray_object*)zend_object_store_get_object(obj TSRMLS_C… in spl_fixedarray_object_get_gc()
153 HashTable *ht = zend_std_get_properties(obj TSRMLS_CC); in spl_fixedarray_object_get_gc()
167 static HashTable* spl_fixedarray_object_get_properties(zval *obj TSRMLS_DC) /* {{{{ */ in spl_fixedarray_object_get_properties()
169 …spl_fixedarray_object *intern = (spl_fixedarray_object*)zend_object_store_get_object(obj TSRMLS_C… in spl_fixedarray_object_get_properties()
170 HashTable *ht = zend_std_get_properties(obj TSRMLS_CC); in spl_fixedarray_object_get_properties()
223 …darray_object_new_ex(zend_class_entry *class_type, spl_fixedarray_object **obj, zval *orig, int cl… in spl_fixedarray_object_new_ex() argument
231 *obj = intern; in spl_fixedarray_object_new_ex()
H A Dspl_heap.c385 static zend_object_value spl_heap_object_new_ex(zend_class_entry *class_type, spl_heap_object **obj in spl_heap_object_new_ex() argument
393 *obj = intern; in spl_heap_object_new_ex()
523 static HashTable* spl_heap_object_get_debug_info_helper(zend_class_entry *ce, zval *obj, int *is_te… in spl_heap_object_get_debug_info_helper() argument
524 spl_heap_object *intern = (spl_heap_object*)zend_object_store_get_object(obj TSRMLS_CC); in spl_heap_object_get_debug_info_helper()
572 static HashTable* spl_heap_object_get_debug_info(zval *obj, int *is_temp TSRMLS_DC) /* {{{ */ in spl_heap_object_get_debug_info() argument
574 return spl_heap_object_get_debug_info_helper(spl_ce_SplHeap, obj, is_temp TSRMLS_CC); in spl_heap_object_get_debug_info()
578 static HashTable* spl_pqueue_object_get_debug_info(zval *obj, int *is_temp TSRMLS_DC) /* {{{ */ in spl_pqueue_object_get_debug_info() argument
580 return spl_heap_object_get_debug_info_helper(spl_ce_SplPriorityQueue, obj, is_temp TSRMLS_CC); in spl_pqueue_object_get_debug_info()

Completed in 58 milliseconds

1...<<11121314151617