Home
last modified time | relevance | path

Searched refs:obj (Results 226 – 250 of 594) sorted by relevance

12345678910>>...24

/PHP-8.3/ext/standard/tests/serialize/
H A Dref_to_failed_serialize.phpt15 $obj = new NotSerializable();
16 $data = [$obj, $obj];
H A Dserialization_objects_012.phpt6 $obj = new stdclass;
7 $a[0] = $obj;
23 $obj = new stdclass;
24 $a[0] = $obj;
39 $obj = new stdclass;
41 $contaner->a = $obj;
57 $obj = new stdclass;
59 $contaner->a = $obj;
/PHP-8.3/ext/spl/tests/SplFileObject/
H A DSplFileObject_getCsvControl_basic_001.phpt5 $obj = New SplFileObject(__DIR__.'/SplFileObject_testinput.csv');
6 var_dump($obj->getCsvControl());
H A DSplFileObject_fscanf_basic.phpt5 $obj = New SplFileObject(__DIR__.'/SplFileObject_testinput.csv');
6 var_dump($obj->fscanf('%s'));
/PHP-8.3/Zend/tests/
H A Dbug65969.phpt5 $obj = new stdClass;
6 list($a,$b) = $obj->prop = [1,2];
H A Dbug68163.phpt6 $obj = (object) ['foo' => 'bar'];
9 var_dump($obj->$foo);
H A Dbug39825.phpt6 $obj = (object)$array;
7 foreach ($obj as $name => $value) {
H A Dbug37212.phpt23 public function copyValue($obj)
25 $this->value = $obj->getValue();
26 $this->value = $obj->value; // value defined in common base class
H A Dbug39017.phpt2 Bug #39017 (foreach(($obj = new myClass) as $v); echo $obj; segfaults)
H A Dstringable_internal_class.phpt9 $obj = new _ZendTestClass;
10 var_dump($obj instanceof Stringable);
H A Dforeach_018.phpt6 $obj = (object)[
11 foreach ($obj as $k => $v) {
/PHP-8.3/tests/lang/
H A DforeachLoopIteratorAggregate.004.phpt7 private $obj;
10 function __construct($obj) {
12 $this->obj = $obj;
19 $more = $this->num < $this->obj->max;
/PHP-8.3/ext/json/tests/
H A Dpass002.phpt9 $obj = json_decode($test);
10 var_dump($obj);
16 $obj_enc = json_encode($obj);
23 $obj = json_decode($obj_enc);
24 var_dump($obj);
/PHP-8.3/ext/standard/tests/file/
H A Dsymlink_link_linkinfo_is_link_variation1.phpt32 $obj = new object_temp("$dirname/symlink_link_linkinfo_is_link_link.tmp");
36 var_dump( symlink($filename, $obj->linkname) );
38 $linkinfo = linkinfo($obj->linkname);
41 var_dump( is_link($obj->linkname) );
43 unlink($obj->linkname);
50 var_dump( link($filename, $obj->linkname) );
52 $linkinfo = linkinfo($obj->linkname);
55 var_dump( is_link($obj->linkname) );
57 unlink($obj->linkname);
/PHP-8.3/ext/spl/tests/
H A Dunserialize.phpt13 $obj = unserialize($str);
14 var_dump($obj);
16 $out = serialize($obj);
H A Darray_017.phpt92 $obj->setFlags($flags);
93 $obj->dump();
94 $obj->show();
106 var_dump($obj->pub1);
109 var_dump($obj->pub1);
120 $obj->dyn1 = 5;
122 check($obj, 0);
123 check($obj, 1);
127 $obj->exchange();
129 check($obj, 0);
[all …]
/PHP-8.3/ext/opcache/tests/opt/
H A Dinference_006.phpt10 $obj=new y;
11 u($y[$obj]);
/PHP-8.3/ext/reflection/tests/
H A DReflectionExtension_getName_basic.phpt8 $obj = new ReflectionExtension('reflection');
9 var_dump($obj->getName());
H A DReflectionExtension_constructor_basic.phpt8 $obj = new ReflectionExtension('reflection');
9 $test = $obj instanceof ReflectionExtension;
/PHP-8.3/tests/classes/
H A Diterators_002.phpt7 private $obj;
10 function __construct($obj) {
12 $this->obj = $obj;
19 $more = $this->num < $this->obj->max;
H A Diterators_003.phpt7 private $obj;
10 function __construct($obj) {
12 $this->obj = $obj;
18 $more = $this->num < $this->obj->max;
/PHP-8.3/ext/opcache/tests/jit/
H A Dfetch_obj_010.phpt12 $obj->ary["bas"] ??= $obj = new stdClass;
/PHP-8.3/ext/xmlwriter/
H A Dphp_xmlwriter.h42 static inline ze_xmlwriter_object *php_xmlwriter_fetch_object(zend_object *obj) { in php_xmlwriter_fetch_object() argument
43 return (ze_xmlwriter_object *)((char*)(obj) - XtOffsetOf(ze_xmlwriter_object, std)); in php_xmlwriter_fetch_object()
/PHP-8.3/ext/opcache/jit/
H A Dzend_jit_gdb.c194 zend_gdbjit_obj obj; /* In-memory ELF object. */ member
236 sect = &ctx->obj.sect[GDBJIT_SECT_##id]; \ in zend_gdbjit_secthdr()
255 sect->size = sizeof(ctx->obj.sym); in zend_gdbjit_secthdr()
273 sym = &ctx->obj.sym[GDBJIT_SYM_FILE]; in zend_gdbjit_symtab()
278 sym = &ctx->obj.sym[GDBJIT_SYM_FUNC]; in zend_gdbjit_symtab()
457 ctx->obj.sect[sect].ofs = (uintptr_t)((char *)ctx->p - (char *)&ctx->obj); in zend_gdbjit_initsect()
462 ctx->obj.sect[sect].size = (uintptr_t)(ctx->p - ctx->startp); in zend_gdbjit_initsect_done()
467 zend_gdbjit_obj *obj = &ctx->obj; in zend_gdbjit_buildobj() local
475 ctx->p = obj->space; in zend_gdbjit_buildobj()
483 ctx->objsize = (size_t)((char *)ctx->p - (char *)obj); in zend_gdbjit_buildobj()
[all …]
/PHP-8.3/Zend/tests/type_declarations/
H A Dtyped_properties_053.phpt8 $obj = new A;
9 var_dump($obj);

Completed in 34 milliseconds

12345678910>>...24