File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / Zend / tests / bug31683.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:47:52 2012 UTC (12 years, 4 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

--TEST--
Bug #31683 (changes to $name in __get($name) override future parameters)
--FILE--
<?php

class Foo implements ArrayAccess {

  function __get($test) {
    var_dump($test);         
    $test = 'bug';
  }

  function __set($test, $val) {
    var_dump($test);         
    var_dump($val);
    $test = 'bug';
    $val = 'bug';
  }

  function __call($test, $arg) {
    var_dump($test);         
    $test = 'bug';
  }

  function offsetget($test) {
    var_dump($test);         
    $test = 'bug';
    return 123;
  }

  function offsetset($test, $val) {
    var_dump($test);         
    var_dump($val);         
    $test = 'bug';
    $val  = 'bug';
  }

  function offsetexists($test) {
    var_dump($test);         
    $test = 'bug';
  }

  function offsetunset($test) {
    var_dump($test);         
    $test = 'bug';
  }

}

$foo = new Foo();
$a = "ok";

for ($i=0; $i < 2; $i++) {
  $foo->ok("ok");
  $foo->ok;
  $foo->ok = "ok";
  $x = $foo["ok"];
  $foo["ok"] = "ok";
  isset($foo["ok"]);
  unset($foo["ok"]);
//  $foo[];
  $foo[] = "ok";
//  isset($foo[]);
//  unset($foo[]);
  $foo->$a;
  echo "---\n";
}
?>
--EXPECT--
string(2) "ok"
string(2) "ok"
string(2) "ok"
string(2) "ok"
string(2) "ok"
string(2) "ok"
string(2) "ok"
string(2) "ok"
string(2) "ok"
NULL
string(2) "ok"
string(2) "ok"
---
string(2) "ok"
string(2) "ok"
string(2) "ok"
string(2) "ok"
string(2) "ok"
string(2) "ok"
string(2) "ok"
string(2) "ok"
string(2) "ok"
NULL
string(2) "ok"
string(2) "ok"
---

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>