summaryrefslogtreecommitdiff
path: root/Zend/tests/strict_001.phpt
blob: 3fcaa8c2bcecfbf79b791c1dbdba1cd39afa8945 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
using resource as array offset
--INI--
error_reporting=8191
--FILE--
<?php

$fp = fopen(__FILE__, 'r');

$array = array(1,2,3,4,5,6,7);

var_dump($array[$fp]);

echo "Done\n";
?>
--EXPECTF--
Notice: Resource ID#%d used as offset, casting to integer (%d) in %s on line %d
int(%d)
Done