Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php5/php-5.6.6/tests/lang/
Upload File :
Current File : //hdd/hdd21/main/php5/php-5.6.6/tests/lang/bug25652.phpt

--TEST--
Bug #25652 (Calling Global functions dynamically fails from Class scope)
--FILE--
<?php

	function testfunc ($var) {
		echo "testfunc $var\n";
	}
	
	class foo {
		public $arr = array('testfunc');
		function bar () {
			$this->arr[0]('testvalue');
		}
	}
	
	$a = new foo ();
	$a->bar ();
	
?>
--EXPECT--
testfunc testvalue