DS
Size: a a a
DS
SG
lv
R#
DS
R#
ЕЧ
SG
class Test
{
function isA()
{
echo 'isA' . PHP_EOL;
return false;
}
function isB()
{
echo 'isB' . PHP_EOL;
return true;
}
}
$test = new Test();
var_dump($test->isA() && $test->isB());
SG
ЕЧ
SG
ЕЧ
lv
DS
ЕЧ
ЕЧ
DS
lv
DS