Home
last modified time | relevance | path

Searched refs:obj (Results 151 – 175 of 569) sorted by relevance

12345678910>>...23

/PHP-8.1/ext/com_dotnet/
H A Dphp_com_dotnet_internal.h60 #define CDNO_FETCH_VERIFY(obj, zv) do { \ argument
65 obj = (php_com_dotnet_object*)Z_OBJ_P(zv); \
76 void php_com_object_enable_event_sink(php_com_dotnet_object *obj, int enable);
94 HRESULT php_com_invoke_helper(php_com_dotnet_object *obj, DISPID id_member,
96 HRESULT php_com_get_id_of_name(php_com_dotnet_object *obj, char *name,
98 int php_com_do_invoke_by_id(php_com_dotnet_object *obj, DISPID dispid,
100 int php_com_do_invoke(php_com_dotnet_object *obj, char *name, size_t namelen,
102 int php_com_do_invoke_byref(php_com_dotnet_object *obj, zend_internal_function *f,
140 ITypeInfo *php_com_locate_typeinfo(char *typelibname, php_com_dotnet_object *obj, char *dispname, i…
H A Dcom_iterator.c136 php_com_dotnet_object *obj; in php_com_iter_get() local
149 obj = CDNO_FETCH(object); in php_com_iter_get()
151 if (V_VT(&obj->v) != VT_DISPATCH && !V_ISARRAY(&obj->v)) { in php_com_iter_get()
153 php_error_docref(NULL, E_WARNING, "Variant is not an object or array VT=%d", V_VT(&obj->v)); in php_com_iter_get()
164 I->code_page = obj->code_page; in php_com_iter_get()
169 if (V_ISARRAY(&obj->v)) { in php_com_iter_get()
173 dims = SafeArrayGetDim(V_ARRAY(&obj->v)); in php_com_iter_get()
184 VariantCopy(&I->safe_array, &obj->v); in php_com_iter_get()
202 if (FAILED(IDispatch_Invoke(V_DISPATCH(&obj->v), DISPID_NEWENUM, in php_com_iter_get()
/PHP-8.1/ext/spl/tests/
H A Darray_008.phpt7 $obj = new ArrayObject($arr);
9 foreach($obj as $ak=>&$av) {
10 foreach($obj as $bk=>&$bv) {
H A Dbug62672.phpt27 $obj = new ObjB(new ArrayObject());
29 var_dump($obj == unserialize(serialize($obj)));
/PHP-8.1/Zend/tests/type_declarations/
H A Dtyped_properties_088.phpt13 function test($obj) {
14 $obj->prop = "42";
15 var_dump($obj);
H A Dtyped_properties_113.phpt15 $obj = new A;
16 foreach ($obj as $k => &$v) {
20 var_dump($obj);
H A Dtyped_properties_114.phpt15 $obj = new A;
16 foreach ($obj as $k => &$v) {
23 foreach ($obj as $k => &$v) {
31 var_dump($obj);
/PHP-8.1/Zend/tests/
H A Dobject_array_cast.phpt10 $obj = (object) [1, 2, 3];
11 var_dump((array) (object) $obj);
12 var_dump($obj);
H A Dassign_obj_ref_byval_function.phpt10 $obj = new stdClass;
11 $obj->prop =& notRef();
12 var_dump($obj);
H A Dbug29674.phpt23 $obj = new BaseClass;
24 $obj->printVars();
27 $obj = new ChildClass;
28 $obj->printVars();
H A Dbug38220.phpt6 public $obj;
9 echo "func1(): {$this->obj->i}\n";
13 echo "close(): {$this->obj->i}\n";
28 $drv->obj = $this;
36 // $drv->obj = null;
H A Dclass_constant_to_reference_cached.phpt17 $obj = new Test;
18 $obj->readConst();
19 unset($obj);
/PHP-8.1/tests/lang/
H A Dbug21669.phpt2 Bug #21669 ("$obj = new $this->var;" doesn't work)
14 $obj = new $this->name; /* Parse error */
15 return $obj;
H A DforeachLoopObjects.004.phpt15 $obj = new C;
17 foreach ($obj as $v) {
18 if ($v==$obj->b) {
19 unset($obj->b);
27 var_dump($obj);
/PHP-8.1/ext/mysqli/tests/
H A Dgh8068.phpt15 $obj = $res->fetch_object();
17 $obj,
18 $obj->{42}
/PHP-8.1/ext/json/tests/
H A Djson_encode_basic.phpt18 $obj = new sample();
19 $obj->MyInt = 99;
20 $obj->MyFloat = 123.45;
21 $obj->MyBool = true;
22 $obj->MyNull = null;
23 $obj->MyString = "Hello World";
74 $obj
/PHP-8.1/ext/standard/tests/general_functions/
H A Dbug32647.phpt17 unset($obj);
20 register_shutdown_function(array($obj,""));
26 register_shutdown_function(array($obj,"some string"));
63 $obj = new bar;
66 register_shutdown_function(array($obj,'foobar'));
71 register_shutdown_function(array($obj,'barfoo'));
75 Warning: Undefined variable $obj in %s on line %d
78 Warning: Undefined variable $obj in %s on line %d
/PHP-8.1/tests/classes/
H A Dfactory_and_singleton_007.phpt11 $obj = new test;
12 $clone = clone $obj;
13 $obj = NULL;
H A Dfactory_and_singleton_008.phpt11 $obj = new test;
12 $clone = clone $obj;
13 $obj = NULL;
H A Dprivate_007b.phpt20 $obj = new Foo();
21 $obj->pub();
22 $obj->priv();
/PHP-8.1/ext/dom/
H A Ddocument.c278 if (obj->document) { in dom_document_strict_error_checking_read()
290 if (obj->document) { in dom_document_strict_error_checking_write()
305 if (obj->document) { in dom_document_format_output_read()
316 if (obj->document) { in dom_document_format_output_write()
330 if (obj->document) { in dom_document_validate_on_parse_read()
341 if (obj->document) { in dom_document_validate_on_parse_write()
355 if (obj->document) { in dom_document_resolve_externals_read()
366 if (obj->document) { in dom_document_resolve_externals_write()
380 if (obj->document) { in dom_document_preserve_whitespace_read()
391 if (obj->document) { in dom_document_preserve_whitespace_write()
[all …]
/PHP-8.1/ext/xml/tests/
H A Dxml002.phpt53 $obj = new myclass;
55 xml_set_element_handler($xml_parser, array($obj,"startElement"),
56 array($obj, "endElement"));
57 xml_set_character_data_handler($xml_parser, array($obj, "characterData"));
58 xml_set_processing_instruction_handler($xml_parser, array($obj, "PIHandler"));
59 xml_set_default_handler($xml_parser, array($obj, "defaultHandler"));
61 array($obj, "externalEntityRefHandler"));
/PHP-8.1/ext/standard/tests/strings/
H A Dbug26817.phpt20 $obj = new test();
21 $obj->foo();
22 var_dump(http_build_query($obj));
/PHP-8.1/Zend/tests/traits/
H A Dbug64070.phpt30 $obj = new first_class();
31 $obj->first_function();
32 $obj->second_function();
/PHP-8.1/ext/reflection/tests/
H A DReflectionClass_getModifierNames_basic.phpt33 $obj = new ReflectionClass($class);
34 var_dump($obj->getName(), Reflection::getModifierNames($obj->getModifiers()));
38 $obj = new ReflectionClass($class);
39 foreach($obj->getMethods() as $method) {
40 …var_dump($obj->getName() . "::" . $method->getName(), Reflection::getModifierNames($method->getMod…

Completed in 46 milliseconds

12345678910>>...23