Home
last modified time | relevance | path

Searched refs:it (Results 151 – 175 of 1009) sorted by relevance

12345678910>>...41

/php-src/Zend/tests/
H A Dnowdoc_001.phpt15 With another line in it.
24 With another line in it.
H A Dbug67314.phpt14 echo "made it once\n";
20 made it once
H A Dbug34062.phpt9 // Currently it's the minimum required number of zeros
10 // If you remove one, it won't crash
/php-src/ext/spl/tests/
H A Dbug36287.phpt6 $it = new RecursiveIteratorIterator(new RecursiveDirectoryIterator("."), true);
9 foreach($it as $file)
H A Diterator_048.phpt19 $it = new MyRecursiveRegexIterator($ar, '/Bar/');
21 $it->show();
H A Dspl_iterator_apply_error.phpt14 $it = new MyArrayIterator(array(1, 21, 22));
17 $res = iterator_apply($it, 'test');
H A DDirectoryIterator_by_reference.phpt8 $it = new DirectoryIterator(__DIR__);
9 foreach( $it as &$file ) {
H A Dbug42364.phpt10 $it = new DirectoryIterator($dir);
11 foreach ($it as $e) {
/php-src/Zend/tests/generators/
H A Dbug70965.phpt6 function it() {
14 $gen = it();
/php-src/ext/phar/tests/
H A Dphar_oo_004.phpt12 $it = new DirectoryIterator('phar://'.$fname);
14 foreach($it as $name => $ent)
65 $it = new MyDirectoryIterator('phar://'.$fname);
67 foreach($it as $name => $ent)
/php-src/Zend/tests/generators/errors/
H A Dnon_ref_generator_iterated_by_ref_error.phpt13 …caught Exception: You can only iterate a generator by-reference if it declared that it yields by-r…
/php-src/ext/standard/tests/strings/
H A Dbug39873.phpt5 if (!setlocale(LC_ALL, "ita","it","Italian","it_IT","it_IT.ISO8859-1","it_IT.ISO_8859-1")) {
11 setlocale(LC_ALL, "ita","it","Italian","it_IT","it_IT.ISO8859-1","it_IT.ISO_8859-1");
/php-src/docs/source/core/data-structures/
H A Dzend_string.rst9 - Calculating the length of the string is expensive, as it requires walking the entire string to
44 // Write it to the output buffer.
46 // Decrease the reference count and free it if necessary.
58 it may have been freed if you were its last user.
125 - Computes the string has if it hasn't already been, and returns it.
142 - Decreases the reference count and frees the string if it goes to 0.
168 ``MyClass``, it would be wasteful to allocate a new string ``"MyClass"`` every time it is referenced
172 buffer. If it finds it there, it can return a pointer to the existing string. If it doesn't, it
173 allocates a new string and adds it to the buffer.
/php-src/ext/standard/tests/general_functions/
H A Dbug41037.phpt23 Registered tick function cannot be unregistered while it is being executed
26 Registered tick function cannot be unregistered while it is being executed
/php-src/ext/zlib/tests/
H A Dzlib_filter_inflate2.phpt9 fwrite($a, "This is quite the thing ain't it\n");
40 This is quite the thing ain't it
42 This is quite the thing ain't it
/php-src/ext/standard/tests/file/
H A Dfgetcsv_variation17.phpt102 string(2) "it"
118 string(2) "it"
134 string(2) "it"
150 string(2) "it"
166 string(2) "it"
182 string(2) "it"
198 string(2) "it"
214 string(2) "it"
230 string(2) "it"
246 string(2) "it"
[all …]
/php-src/ext/pcre/tests/
H A Dbug72463.phpt14 mail("some.address.it.wont.ever.reach@lookup.and.try.to.find.this.host.name","subject","a", "");
15 mail("some.address.it.wont.ever.reach@lookup.and.try.to.find.this.host.name","subject","a", NULL);
H A Dbug72463_2.phpt14 mail("some.address.it.wont.ever.reach@lookup.and.try.to.find.this.host.name","subject","a", "");
15 mail("some.address.it.wont.ever.reach@lookup.and.try.to.find.this.host.name","subject","a", NULL);
/php-src/ext/posix/tests/
H A Dposix_errno_basic.phpt2 Test function posix_errno() by calling it with its expected arguments
5 Francesco Fullone ff@ideato.it
H A Dposix_errno_variation1.phpt2 Test function posix_errno() by calling it with with permission error
5 Francesco Fullone ff@ideato.it
H A Dposix_errno_variation2.phpt2 Test function posix_errno() by calling it with its expected arguments
5 Francesco Fullone ff@ideato.it
H A Dposix_setgid_basic.phpt2 Test function posix_setgid() by calling it with its expected arguments
7 Francesco Fullone ff@ideato.it
/php-src/ext/standard/tests/mail/
H A Dbug69115.phpt4 <?php if (substr(PHP_OS, 0, 3) !== 'WIN') die('skip Windows only test, as in Unix builds it sends a…
10 /* Just ensure it doesn't crash when trimming headers */
/php-src/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_fetch_class.phpt85 printf("Creating an object, serializing it and writing it to DB...\n");
94 printf("\nUsing PDO::FETCH_CLASS to fetch the object from DB and unserialize it...\n");
114 Creating an object, serializing it and writing it to DB...
119 Using PDO::FETCH_CLASS to fetch the object from DB and unserialize it...
/php-src/docs/source/introduction/
H A Dhigh-level-overview.rst8 prototyping, as it skips a lengthy compilation phase. However, it also poses some unique challenges
42 and splitting it into a list of words and symbols. Tokens generally consist of a type, a simple
80 structure from it. To humans, how source code elements are grouped seems obvious through whitespace
82 code to determine these boundaries quickly. To make it easier and faster to work with, we build a
83 tree structure from the tokens to more closely reflect the source code the way humans see it.
123 PHP is a bit different, in that it does not execute machine code directly. Instead, instructions run
131 With that little detour out of the way, the job of the compiler is to read the AST and translate it
161 - We start at the top, i.e. ``JMPZ``. If its first operand contains a "falsy" value, it will jump
162 to the instruction encoded in its second operand. If it is truthy, it will simply fall-through to
192 takes the virtual PHP opcodes and turns it into actual machine instructions, with additional
[all …]

Completed in 323 milliseconds

12345678910>>...41