mirror of
https://github.com/php/php-src.git
synced 2025-01-20 10:43:40 +08:00
6d8760677d
- altered EXPECT for parser errors. This may or may not be a Good Thing.
12 lines
188 B
PHP
12 lines
188 B
PHP
--TEST--
|
|
accessing object dimension
|
|
--FILE--
|
|
<?php
|
|
|
|
$object = new stdClass;
|
|
var_dump($object[1]);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot use object of type stdClass as array in %s on line %d
|