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/bug00840.inc

<?php

class A
{
    static public $_staticvar;

    protected $var_1;
    protected $var_2;
    protected $var_3;


    public function __construct()
    {
    }
}

class B
{
    function __call($name, $args)
    {
        if ($name == 'testMethod') {
            return new \A();
        }
    }
}

$b = new B();
$x = $b->testMethod();

// Set Breakpoint here
sleep(1);
?>

Copyright © 2019 by b0y-101