b0y-101 Mini Shell


Current Path : E:/www/b-group.old/spfin - Copy/testpayment/src/xdebug/tests/debugger/
File Upload :
Current File : E:/www/b-group.old/spfin - Copy/testpayment/src/xdebug/tests/debugger/bug02055.inc

<?php
class Test2055 {
	static protected $c;

	static function setUp()
	{
		self::$c = function($a, $b) { return $a + $b; };
	}

	static function doOp( $a, $b )
	{
		$c = self::$c;

		return $c($a, $b);
	}
}

Test2055::setUp();
echo Test2055::doOp( 5, 8 ), "\n";

Copyright © 2019 by b0y-101