Home
last modified time | relevance | path

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

12345678910>>...25

/php-src/ext/spl/tests/SplFileObject/
H A DSplFileObject_fpassthru_basic.phpt5 $obj = New SplFileObject(__DIR__.'/SplFileObject_testinput.csv');
6 $obj->fpassthru();
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-src/ext/reflection/tests/
H A DReflectionExtension_constructor_error.phpt9 $obj = new ReflectionExtension();
15 $obj = new ReflectionExtension('foo', 'bar');
21 $obj = new ReflectionExtension([]);
H A DReflectionExtension_getName_basic.phpt8 $obj = new ReflectionExtension('reflection');
9 var_dump($obj->getName());
/php-src/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-src/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-src/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-src/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-src/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 Dbug37212.phpt23 public function copyValue($obj)
25 $this->value = $obj->getValue();
26 $this->value = $obj->value; // value defined in common base class
H A Dbug39825.phpt6 $obj = (object)$array;
7 foreach ($obj as $name => $value) {
H A Dbug39017.phpt2 Bug #39017 (foreach(($obj = new myClass) as $v); echo $obj; segfaults)
/php-src/ext/xsl/
H A Dphp_xsl.h67 static inline xsl_object *php_xsl_fetch_object(zend_object *obj) { in php_xsl_fetch_object() argument
68 return (xsl_object *)((char*)(obj) - XtOffsetOf(xsl_object, std)); in php_xsl_fetch_object()
73 void php_xsl_set_object(zval *wrapper, void *obj);
/php-src/ext/opcache/tests/jit/
H A Dassign_obj_004.phpt10 $obj->y = 42;
11 $obj && y;
H A Dfetch_obj_010.phpt11 $obj->ary["bas"] ??= $obj = new stdClass;
H A Dassign_op_002.phpt13 $obj = new Test;
14 $ref =& $obj->prop;
/php-src/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-src/ext/opcache/tests/opt/
H A Dinference_006.phpt10 $obj=new y;
11 u($y[$obj]);
/php-src/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-src/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()

Completed in 97 milliseconds

12345678910>>...25