File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / tests / lang / static_variation_002.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:06 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--
Static variables in methods & nested functions & evals.
--FILE--
<?php

Class C {
	function f() {
		static $a = array(1,2,3);
		eval(' static $k = array(4,5,6); ');
		
		function cfg() {
			static $a = array(7,8,9);
			eval(' static $k = array(10,11,12); ');
			var_dump($a, $k);
		}
		var_dump($a, $k);
	}
}
$c = new C;
$c->f();
cfg();

Class D {
	static function f() {
		eval('function dfg() { static $b = array(1,2,3); var_dump($b); } ');
	}
}
D::f();
dfg();

eval(' Class E { function f() { static $c = array(1,2,3); var_dump($c); } }');
$e = new E;
$e->f();

?>
--EXPECTF--
array(3) {
  [0]=>
  int(1)
  [1]=>
  int(2)
  [2]=>
  int(3)
}
array(3) {
  [0]=>
  int(4)
  [1]=>
  int(5)
  [2]=>
  int(6)
}
array(3) {
  [0]=>
  int(7)
  [1]=>
  int(8)
  [2]=>
  int(9)
}
array(3) {
  [0]=>
  int(10)
  [1]=>
  int(11)
  [2]=>
  int(12)
}
array(3) {
  [0]=>
  int(1)
  [1]=>
  int(2)
  [2]=>
  int(3)
}
array(3) {
  [0]=>
  int(1)
  [1]=>
  int(2)
  [2]=>
  int(3)
}

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