Home
last modified time | relevance | path

Searched refs:this (Results 226 – 250 of 2290) sorted by relevance

12345678910>>...92

/PHP-5.5/ext/spl/tests/
H A Diterator_002.phpt10 return is_array($this->current());
15 return new RecursiceArrayIterator($this->current());
28 return $this->getInnerIterator()->hasChildren();
33 return new RecursiceArrayIterator($this->getInnerIterator()->current());
/PHP-5.5/ext/standard/tests/file/
H A Duserdirstream.phpt10 $this->idx = 0;
18 if ($this->idx >= count($sample)) return false;
19 else return $sample[$this->idx++];
23 $this->idx = 0;
/PHP-5.5/Zend/tests/
H A Dbug32993.phpt9 public function rewind() { return reset($this->arr); }
11 public function key() { return key($this->arr); }
12 public function next() { return next($this->arr); }
13 public function valid() { return (current($this->arr) !== false); }
H A Dbug63635.phpt11 $parent->childs[] = $this;
13 $this->childs[] = $this;
17 $this->childs = NULL;
H A Dbug63462.phpt14 $this->publicProperty,
15 $this->protectedProperty,
16 $this->privateProperty
22 return $this->$name;
27 $this->$name = $value;
32 return isset($this->$name);
H A Dbug44899_2.phpt12 $this->_data = $data;
17 return isset($this->_data[$field_name]);
21 var_dump(empty($this->_data[$var]));
22 return $this->_data[$var];
H A Dbug39944.phpt53 $this->addToArray($this->getArray(), $strToAdd);
57 if (!$this->arr)
58 $this->arr = array();
59 return $this->arr;
H A Dindirect_method_call_003.phpt10 return $this->x;
13 $this->x = $val;
14 return $this;
H A Derrmsg_003.phpt2 errmsg: cannot reassign $this (by ref)
9 $this = &$a;
19 Fatal error: Cannot re-assign $this in %s on line %d
H A Dbug30162.phpt2 Bug #30162 (Catching exception in constructor couses lose of $this)
8 $this->x = "x";
21 $this->y = "y";
23 $this->z = new FIIFO;
/PHP-5.5/ext/session/tests/
H A Dsession_set_save_handler_class_007.phpt24 $this->num = $num;
25 echo "(#$this->num) constructor called\n";
28 echo "(#$this->num) destructor called\n";
32 echo "(#$this->num) finish called $id\n";
36 echo "(#$this->num) writing $id = $data\n";
41 echo "(#$this->num) closing $id\n";
/PHP-5.5/ext/phar/tests/
H A Dphar_buildfromiterator4.phpt15 $this->a = $a;
19 return next($this->a);
23 return current($this->a);
27 return key($this->a);
31 return current($this->a);
35 return reset($this->a);
H A Dphar_dotted_path.phpt20 $files['a'] = 'this is a';
21 $files['b'] = 'this is b';
39 this is a
40 this is b
/PHP-5.5/tests/classes/
H A Dbug63462.phpt14 $this->publicProperty,
15 $this->protectedProperty,
16 $this->privateProperty
22 return $this->$name;
27 $this->$name = $value;
32 return isset($this->$name);
H A Diterators_003.phpt14 $this->obj = $obj;
20 $more = $this->num < $this->obj->max;
26 return $this->num;
30 $this->num++;
33 return $this->num;
43 return new c_iter($this);
H A D__set__get_001.phpt14 if (isset($this->x[$nm])) {
15 $r = $this->x[$nm];
27 if (isset($this->x[$nm])) {
28 $this->x[$nm] = $val;
39 // this doesn't go through __set()... should it?
/PHP-5.5/ext/zip/
H A Dphp_zip.c1513 if (this) { in ZIPARCHIVE_METHOD()
1562 if (!this) { in ZIPARCHIVE_METHOD()
1592 if (!this) { in ZIPARCHIVE_METHOD()
1617 if (!this) { in ZIPARCHIVE_METHOD()
1671 if (!this) { in php_zip_add_from_pattern()
1791 if (!this) { in ZIPARCHIVE_METHOD()
1834 if (!this) { in ZIPARCHIVE_METHOD()
1891 if (!this) { in ZIPARCHIVE_METHOD()
1918 if (!this) { in ZIPARCHIVE_METHOD()
1947 if (!this) { in ZIPARCHIVE_METHOD()
[all …]
/PHP-5.5/ext/soap/tests/interop/Round3/GroupD/
H A Dr3_groupD_compound2_001w.phpt12 $this->Age = $a;
13 $this->ID = $i;
14 $this->Name = $n;
15 $this->Male = $m;
20 $this->person = $person;
21 $this->ID = $id;
22 $this->salary = $salary;
/PHP-5.5/ext/xml/tests/
H A Dbug32001.phpt18 $this->encoding = $enc;
19 $this->chunk_size = $chunk_size;
20 $this->bom = $bom;
21 $this->prologue = !$omit_prologue;
22 $this->tags = array();
36 if ($this->prologue) {
53 if ($this->bom) {
101 xml_set_object($parser, $this);
103 if ($this->chunk_size == 0) {
120 echo "Chunk size: ".($this->chunk_size ? "$this->chunk_size byte(s)\n": "all data at once\n");
[all …]
/PHP-5.5/ext/mysqli/tests/
H A D004.phpt23 if (!mysqli_query($link, "INSERT INTO test_bind_fetch VALUES ('1234567890', 'this is a test0')"))
26 if (!mysqli_query($link, "INSERT INTO test_bind_fetch VALUES ('1234567891', 'this is a test1')"))
29 if (!mysqli_query($link, "INSERT INTO test_bind_fetch VALUES ('1234567892', 'this is a test2')"))
32 if (!mysqli_query($link, "INSERT INTO test_bind_fetch VALUES ('1234567893', 'this is a test3')"))
69 %unicode|string%(15) "this is a test0"
75 %unicode|string%(15) "this is a test1"
81 %unicode|string%(15) "this is a test2"
87 %unicode|string%(15) "this is a test3"
/PHP-5.5/ext/standard/tests/array/
H A Dksort_variation11.phpt31 Test this!!!
37 $multiline_heredoc => "heredoc string\twith!@# and 123\nTest this!!!"
68 Test this!!!"]=>
70 Test this!!!"
81 Test this!!!"]=>
83 Test this!!!"
94 Test this!!!"]=>
96 Test this!!!"
/PHP-5.5/ext/mbstring/ucgendat/
H A DOPENLDAP_LICENSE4 Redistribution and use of this software and associated documentation
12 statements and notices, this list of conditions, and the following
16 3. Redistributions must contain a verbatim copy of this document.
18 The OpenLDAP Foundation may revise this license from time to time.
20 this Software under terms of this license revision or under the
39 in this Software without specific, written prior permission. Title
40 to copyright in this Software shall at all times remain with copyright
47 distribute verbatim copies of this document is granted.
/PHP-5.5/tests/lang/
H A Dbug27535.phpt17 $this->storage = new Class1();
19 $this->storage->_Class2_obj = $this;
/PHP-5.5/scripts/dev/generate-phpt/tests/
H A DgtCommandLineOptionsTest.php20 $this->assertTrue($clo->hasOption('h'));
26 $this->assertTrue($clo->hasOption('f'));
27 $this->assertEquals('some-function', $clo->getOption('f'));
H A DgtIsSpecifiedTestTypeTest.php13 $this->assertTrue($ch->check($clo));
21 $this->assertFalse($ch->check($clo));
29 $this->assertEquals($ch->getMessage(), gtText::get('testTypeNotSpecified'));

Completed in 2006 milliseconds

12345678910>>...92