php-src/Zend/tests/bug30346.phpt
2005-04-23 15:21:07 +00:00

24 lines
502 B
PHP
Executable File

--TEST--
Bug 30346 (arrayAcces & using $this)
--FILE--
<?php
class Test implements ArrayAccess
{
public function __construct() { }
public function offsetExists( $offset ) { return false; }
public function offsetGet( $offset ) { return $offset; }
public function offsetSet( $offset, $data ) { }
public function offsetUnset( $offset ) { }
}
$post = new Test;
$id = 'page';
echo $post[$id.'_show'];
echo "\n";
?>
===DONE===
--EXPECT--
page_show
===DONE===