mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
25 lines
507 B
PHP
25 lines
507 B
PHP
--TEST--
|
|
Bug #30346 (arrayAccess and 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===
|