<?php $a = 0; ++$a; // 1 class Foo { function __construct() {} } new Foo(++$a); // 2 function bar() {} bar(++$a); // 3 class WTF {} new WTF(++$a); // suddenly, PHP becomes lazy var_dump($a);
You have javascript disabled. You will not be able to edit any code.