Searched refs:counter (Results 1 – 25 of 223) sorted by relevance
123456789
/PHP-8.0/tests/classes/ |
H A D | iterators_008.phpt | 9 private $counter = 2; 12 echo __METHOD__ . "($this->counter)\n"; 13 return $this->counter; 17 $this->counter--; 18 echo __METHOD__ . "($this->counter)\n"; 22 echo __METHOD__ . "($this->counter)\n"; 26 echo __METHOD__ . "($this->counter)\n"; 30 echo __METHOD__ . "($this->counter)\n";
|
H A D | destructor_and_globals.phpt | 13 class counter { 37 $obj1 = new counter; 40 $obj2 = new counter; 43 counter::destroy($obj1); 46 //counter::destroy($obj2);
|
H A D | singleton_001.phpt | 7 private $counter = 0; 10 echo ++$this->counter;
|
/PHP-8.0/ext/enchant/tests/ |
H A D | broker_describe.phpt | 30 $counter = 0; 39 …if ((isset($provider[$counter]['name']) && isset($provider[$counter]['desc']) && isset($provider[$…
|
/PHP-8.0/ext/standard/tests/strings/ |
H A D | fprintf_variation_009.phpt | 14 $counter = 1; 18 fprintf( $fp, "\n-- Iteration %d --\n",$counter); 23 $counter++;
|
H A D | fprintf_variation_001.phpt | 14 $counter = 1; 19 fprintf( $fp, "\n-- Iteration %d --\n",$counter); 24 $counter++;
|
H A D | fprintf_variation_002.phpt | 14 $counter = 1; 18 fprintf( $fp, "\n-- Iteration %d --\n",$counter); 23 $counter++;
|
H A D | vprintf_variation19.phpt | 42 $counter = 1; 44 echo"\n-- Iteration $counter --\n"; 45 $result = vprintf($format, $args_array[$counter-1]); 48 $counter++;
|
H A D | vprintf_variation19_64bit.phpt | 42 $counter = 1; 44 echo"\n-- Iteration $counter --\n"; 45 $result = vprintf($format, $args_array[$counter-1]); 48 $counter++;
|
H A D | vprintf_variation15.phpt | 37 $counter = 1; 39 echo "\n-- Iteration $counter --\n"; 40 $result = vprintf($format, $args_array[$counter-1]); 43 $counter++;
|
H A D | vprintf_variation15_64bit.phpt | 37 $counter = 1; 39 echo "\n-- Iteration $counter --\n"; 40 $result = vprintf($format, $args_array[$counter-1]); 43 $counter++;
|
H A D | vprintf_variation3.phpt | 41 $counter = 1; 43 echo "\n-- Iteration $counter --\n"; 44 $result = vprintf($format, $args_array[$counter-1]); 47 $counter++;
|
H A D | vprintf_variation5.phpt | 41 $counter = 1; 43 echo "\n-- Iteration $counter --\n"; 44 $result = vprintf($format, $args_array[$counter-1]); 47 $counter++;
|
H A D | vprintf_variation9.phpt | 41 $counter = 1; 43 echo "\n-- Iteration $counter --\n"; 44 $result = vprintf($format, $args_array[$counter-1]); 47 $counter++;
|
H A D | bug72434.phpt | 11 // The reference counter for $free_me is at -1 for PHP 7 right now. 12 // Increment the reference counter by 1 -> rc is 0 14 // Increment the reference counter by 1 again -> rc is 1
|
H A D | vprintf_variation11.phpt | 44 $counter = 1; 46 echo "\n-- Iteration $counter --\n"; 47 $result = vprintf($format, $args_array[$counter-1]); 50 $counter++;
|
H A D | vprintf_variation11_64bit.phpt | 44 $counter = 1; 46 echo "\n-- Iteration $counter --\n"; 47 $result = vprintf($format, $args_array[$counter-1]); 50 $counter++;
|
H A D | vprintf_variation17.phpt | 33 $counter = 1; 35 echo "\n-- Iteration $counter --\n"; 36 $result = vprintf($format, $args_array[$counter-1]); 39 $counter++;
|
/PHP-8.0/ext/opcache/tests/ |
H A D | preload_bug78175_2.inc | 13 static $counter = 0; 14 return $counter++;
|
/PHP-8.0/ext/standard/tests/array/ |
H A D | array_fill_basic.phpt | 27 $counter = 1; 30 echo "-- Iteration $counter --\n"; 35 $counter++;
|
H A D | extract_variation5.phpt | 12 $counter = 0; 15 echo "\n-- Iteration $counter --\n"; 16 $counter++;
|
/PHP-8.0/ext/standard/tests/url/ |
H A D | base64_encode_basic_002.phpt | 21 $counter = 1; 23 echo "-- Iteration $counter --\n"; 34 $counter ++;
|
/PHP-8.0/tests/lang/ |
H A D | foreachLoop.002.phpt | 31 $counter=0; 33 array_push($a, "new.$counter"); 36 if ($counter++>10) { 45 $counter=0; 47 array_push($a, "new.$counter"); 50 if ($counter++>10) {
|
/PHP-8.0/ext/standard/tests/general_functions/ |
H A D | var_export-locale.phpt | 39 $counter = 1; 50 $counter++; 63 $counter = 1; 74 $counter++; 101 $counter = 1; 112 $counter++; 134 $counter = 1; 145 $counter++; 178 $counter++; 273 $counter++; [all …]
|
H A D | var_export-locale_32.phpt | 39 $counter = 1; 50 $counter++; 63 $counter = 1; 74 $counter++; 101 $counter = 1; 112 $counter++; 134 $counter = 1; 145 $counter++; 178 $counter++; 273 $counter++; [all …]
|
Completed in 32 milliseconds
123456789