Home
last modified time | relevance | path

Searched refs:i (Results 26 – 50 of 1753) sorted by path

12345678910>>...71

/PHP-5.5/Zend/tests/
H A Dbug32290.phpt13 return --$i;
19 return --$i;
25 return --$i;
31 return --$i;
37 return --$i;
46 $i++;
47 if ($i >= 5) return 5;
54 $i++;
62 $i++;
70 $i++;
[all …]
H A Dbug35106.phpt7 foreach($a as $i){
8 echo $i;
H A Dbug38220.phpt9 echo "func1(): {$this->obj->i}\n";
13 echo "close(): {$this->obj->i}\n";
18 public $i;
20 function __construct($i) {
21 $this->i = $i;
66 [i] => 1
74 [i] => 1
81 [i] => 2
89 [i] => 2
H A Dbug39018.phpt75 Notice: Uninitialized string offset: %i in %s on line %d
79 Notice: Uninitialized string offset: %i in %s on line %d
H A Dbug39438.phpt7 $i=0;
37 while($i<1200) {
39 $i++;
H A Dbug40261.phpt10 for ($i=0; $i<$num; $i++) {
11 $a[$i] = Array(1);
14 for ($i=0; $i<$num; $i++) {
15 $b[$i] = $a[$i][0];
19 for ($i=0; $i<$num; $i++) {
20 …$b[$i] = "1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678…
H A Dbug40770.phpt17 for ($i=0; $i<=$mb; $i++) {
H A Dbug40809.phpt15 for ($i=0; $i<$num; $i++) {
16 $a[$i] = Array(1);
18 for ($i=0; $i<$num; $i++) {
19 $b[$i] = $a[$i][0];
23 for ($i=0;$i<$num_repeats;$i++) {
H A Dbug43450.phpt22 for ($i=1;$i<$num_repeats;$i++)
H A Dbug44069.phpt8 for($i = 1; $i <= 2000; $i++)
H A Dbug44913.phpt7 for($i = 0; $i < 1; $i++) {
H A Dbug45147.phpt4 <?php for ($i = 0; $i == 0; $i++): ?>
H A Dbug47343.phpt33 for ($i = 0; $i < 2; $i++)
H A Dbug47353.phpt12 for($i = 1; $i <= 3000; $i++) {
13 if(!isset($myArray[$i]))
14 $myArray[$i] = array();
15 $ref = & $myArray[$i];
H A Dbug48409.phpt33 $i = 34;
36 $c->process($b->xyz($item['foo'], $i));
39 $b->xyz($item['foo'], $i);
H A Dbug52193.phpt12 $i = function () use (&$h) {
16 var_dump($x = (array)$i);
H A Dbug60598.phpt22 for ($i = 0; $i < OBJECT_COUNT; ++$i) {
H A Dbug61165.phpt19 for ($i = 0; $i < 3; $i++) {
H A Dbug63055.phpt6 for ($i=0; $i<9998; $i++) {
H A Dbug63635.phpt25 for ($i=0 ; $i<MAX ; $i++) {
H A Dbug67314.phpt7 $notDefined[$i] = 'test';
18 Notice: Undefined variable: i in %sbug67314.php on line 4
21 Notice: Undefined variable: i in %sbug67314.php on line 4
H A Dbug70121.phpt5 …ring";s:1:"A";s:7:"'."\0".'*'."\0".'code";i:0;s:7:"'."\0".'*'."\0".'file";s:1:"a";s:7:"'."\0".'*'.…
H A Dclosure_010.phpt5 $i = 3;
6 $lambda = function ($lambda) use (&$i) {
7 if ($i==0) return;
8 echo $i--."\n";
12 echo "$i\n";
H A Dclosure_011.phpt5 $i = 1;
6 $lambda = function () use ($i) {
7 return ++$i;
11 //early prototypes gave 3 here because $i was static in $lambda
H A Dclosure_012.phpt5 $lambda = function () use ($i) {
6 return ++$i;
10 var_dump($i);
11 $lambda = function () use (&$i) {
12 return ++$i;
16 var_dump($i);
19 Notice: Undefined variable: i in %sclosure_012.php on line 2
21 Notice: Undefined variable: i in %sclosure_012.php on line 7

Completed in 70 milliseconds

12345678910>>...71