Home
last modified time | relevance | path

Searched refs:obj (Results 251 – 275 of 360) sorted by relevance

1...<<1112131415

/PHP-5.3/ext/dom/
H A Dnodelist.c54 int dom_nodelist_length_read(dom_object *obj, zval **retval TSRMLS_DC) in dom_nodelist_length_read() argument
61 objmap = (dom_nnodemap_object *)obj->ptr; in dom_nodelist_length_read()
H A Dtext.c105 int dom_text_whole_text_read(dom_object *obj, zval **retval TSRMLS_DC) in dom_text_whole_text_read() argument
110 node = dom_object_get_node(obj); in dom_text_whole_text_read()
/PHP-5.3/ext/standard/tests/serialize/
H A Dserialization_objects_001.phpt34 echo "\n--- testing reference to an obj ---\n";
78 --- testing reference to an obj ---
/PHP-5.3/ext/spl/tests/
H A Dobserver_002.phpt43 function __construct($name = 'obj')
101 function contains($obj)
103 return $this->observers->contains($obj);
/PHP-5.3/ext/com_dotnet/
H A DREADME18 $obj->foo[43]->bar();
25 $obj = new COM("...");
26 $obj[1]->foo();
/PHP-5.3/ext/pdo/tests/
H A Dpdo_018.phpt92 foreach($objs as $obj)
94 $cname = get_class($obj);
113 foreach($objs as $idx => $obj)
115 $ctype = $ctypes[get_class($obj)];
116 if (method_exists($obj, 'serialize'))
118 $val = $obj->serialize();
H A Dpdo_029.phpt82 foreach($stmt as $obj) {
83 var_dump($obj);
H A Dpdo_030.phpt83 foreach($stmt as $obj) {
84 var_dump($obj);
/PHP-5.3/ext/wddx/
H A Dwddx.c455 static void php_wddx_serialize_object(wddx_packet *packet, zval *obj) in php_wddx_serialize_object() argument
477 PHP_SET_CLASS_ATTRIBUTES(obj); in php_wddx_serialize_object()
489 objhash = HASH_OF(obj); in php_wddx_serialize_object()
511 PHP_SET_CLASS_ATTRIBUTES(obj); in php_wddx_serialize_object()
523 objhash = HASH_OF(obj); in php_wddx_serialize_object()
527 if (*ent == obj) { in php_wddx_serialize_object()
920 zval *obj; in php_wddx_pop_element() local
989 MAKE_STD_ZVAL(obj); in php_wddx_pop_element()
990 object_init_ex(obj, *pce); in php_wddx_pop_element()
993 zend_hash_merge(Z_OBJPROP_P(obj), in php_wddx_pop_element()
[all …]
/PHP-5.3/tests/classes/
H A Dstatic_this.phpt25 $obj = new TestClass;
/PHP-5.3/ext/xml/tests/
H A Dxml003.phpt54 $obj = new myclass;
55 xml_set_object($xml_parser, $obj);
/PHP-5.3/ext/pdo_mysql/tests/
H A Dpdo_mysql_errorcode.phpt16 function check_error($offset, &$obj, $expected = '00000') {
18 $code = $obj->errorCode();
H A Dpdo_mysql_get_attribute.phpt63 $obj = new stdClass();
64 set_and_get(4, $db, PDO::ATTR_AUTOCOMMIT, $obj);
H A Dpdo_mysql_errorinfo.phpt16 function check_error($offset, &$obj, $expected = '00000') {
17 $info = $obj->errorInfo();
/PHP-5.3/ext/standard/tests/strings/
H A Dtrim1.phpt44 $obj = new string1;
45 var_dump( trim($obj, "Ot") );
H A Drtrim.phpt35 $obj = new string1;
36 var_dump( rtrim($obj, "tc") );
/PHP-5.3/ext/fileinfo/
H A Dfileinfo.c64 struct finfo_object *obj; \
65 obj = (struct finfo_object*)zend_object_store_get_object(_object TSRMLS_CC); \
66 obj->ptr = _ptr; \
71 struct finfo_object *obj = zend_object_store_get_object(object TSRMLS_CC); \
72 finfo = obj->ptr; \
/PHP-5.3/sapi/nsapi/
H A Dnsapi-readme.txt27 <path-to-server>/https-servername/config/obj.conf (for servers < 6) or
40 In obj.conf (for virtual server classes [Sun 6.0+] in their vserver.obj.conf):
103 or similar. Add the following line to the object in obj.conf for
117 type="magnus-internal/directory" in obj.conf with the following:
/PHP-5.3/Zend/
H A Dzend_builtin_functions.c150 ZEND_ARG_INFO(0, obj)
723 zval *obj = NULL; in ZEND_FUNCTION() local
732 if (!obj) { in ZEND_FUNCTION()
814 zval *obj; in is_a_impl() local
833 if (zend_lookup_class(Z_STRVAL_P(obj), Z_STRLEN_P(obj), &the_ce TSRMLS_CC) == FAILURE) { in is_a_impl()
837 } else if (Z_TYPE_P(obj) == IS_OBJECT && HAS_CLASS_ENTRY(*obj)) { in is_a_impl()
838 instance_ce = Z_OBJCE_P(obj); in is_a_impl()
952 zval *obj; in ZEND_FUNCTION() local
965 if (Z_OBJ_HT_P(obj)->get_properties == NULL) { in ZEND_FUNCTION()
969 properties = Z_OBJ_HT_P(obj)->get_properties(obj TSRMLS_CC); in ZEND_FUNCTION()
[all …]
H A Dzend_exceptions.c134 zval tmp, obj; in zend_default_exception_new_ex() local
138 Z_OBJVAL(obj) = zend_objects_new(&object, class_type TSRMLS_CC); in zend_default_exception_new_ex()
139 Z_OBJ_HT(obj) = &default_exception_handlers; in zend_default_exception_new_ex()
150 …zend_update_property_string(default_exception_ce, &obj, "file", sizeof("file")-1, zend_get_execute… in zend_default_exception_new_ex()
151 …zend_update_property_long(default_exception_ce, &obj, "line", sizeof("line")-1, zend_get_executed_… in zend_default_exception_new_ex()
152 zend_update_property(default_exception_ce, &obj, "trace", sizeof("trace")-1, trace TSRMLS_CC); in zend_default_exception_new_ex()
154 return Z_OBJVAL(obj); in zend_default_exception_new_ex()
/PHP-5.3/ext/spl/
H A Dphp_spl.h87 PHPAPI void php_spl_object_hash(zval *obj, char* md5str TSRMLS_DC);
/PHP-5.3/ext/standard/tests/array/
H A Darray_flip_variation4.phpt24 $obj = new MyClass();
49 'obj_value' => $obj,
/PHP-5.3/
H A DREADME.PARAMETER_PARSING_API111 zval *obj;
115 &obj, my_ce, &d) == FAILURE) {
121 If null is passed for object, obj will be set to NULL. */
122 zval *obj;
125 &obj, &arr) == FAILURE) {
H A Dltmain.sh796 *.obj) xform=obj ;;
1032 command="$command -o $obj"
1067 $show "$mv $output_obj $obj"
4128 for obj in $save_libobjs
4149 objlist=$obj
4336 output="$obj"
5541 if (for obj in $oldobjs
5566 for obj in $save_oldobjs
5570 " ") oldobjs=$obj ;;
5582 $show "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj"
[all …]
/PHP-5.3/ext/reflection/
H A Dphp_reflection.c202 zval *obj; member
301 if (intern->obj) { in reflection_free_objects_storage()
302 zval_ptr_dtor(&intern->obj); in reflection_free_objects_storage()
356 if (obj) { in _class_string()
532 if (obj && Z_OBJ_HT_P(obj)->get_properties) { in _class_string()
534 HashTable *properties = Z_OBJ_HT_P(obj)->get_properties(obj TSRMLS_CC); in _class_string()
1556 intern->obj = closure; in ZEND_METHOD()
2156 intern->obj = reference; in ZEND_METHOD()
3045 intern->obj = argument; in reflection_class_object_ctor()
3561 if (intern->obj && Z_OBJ_HANDLER_P(intern->obj, has_property)) { in ZEND_METHOD()
[all …]

Completed in 90 milliseconds

1...<<1112131415