<?php function test($var){ echo "test $var\n"; } class bla { public $foo = "test"; public function bar($str) { echo $this->foo($str),"\n"; // php5 fails w/o method below specified } public function foo($val){ echo __FUNCTION__; test($val); } } $objBla = new bla(); $objBla->bar("someval"); if (phpversion() >= "7.0.0"){ ("test")("nother val"); }
You have javascript disabled. You will not be able to edit any code.