b0y-101 Mini Shell


Current Path : E:/www/b-group.old/spfin/phppayment/src/xdebug/tests/debugger/
File Upload :
Current File : E:/www/b-group.old/spfin/phppayment/src/xdebug/tests/debugger/dbgp-breakpoint-call-method.inc

<?php
class breaking
{
	function onMe()
	{
		echo "break in the onMe method\n";
	}

	static function staticMe()
	{
		echo "break in the staticMe method\n";
	}
}

breaking::staticMe();

$a = new breaking;
$a->onMe();
$a->staticMe();
$a->onMe();
?>

Copyright © 2019 by b0y-101