<?php
$a = 1;
$b = 2;
$c = 0;
$d = $e = $f = -1;
if ( $d = $c && $e = $b && $f = $a ) {
echo "yes";
}
var_dump($d, $e, $f);
// Why isn't this a parse error?? It doesn't do:
// $d = ($c && $e) = ($b && $f) = $a
// (because that is a parse error on its own)
// So what does it do??
echo "\n\n";
$d = $e = $f = -1;
if ( $d = $c and $e = $b and $f = $a ) {
echo "yes";
}
var_dump($d, $e, $f);
// ($d = $c) && ($e = $b) && ($f = $a) so only $d=$c is executed, bc $c is falsy
echo "\n\n";
$d = $e = $f = -1;
if ( $d = $a and $e = $b and $f = $c ) {
echo "yes";
}
var_dump($d, $e, $f);
// ($d = $a) && ($e = $b) && ($f = $c) and all 3 are executed, bc first 2 are truthy
- Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.1 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.8 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.30, 8.2.0 - 8.2.25, 8.3.0 - 8.3.13
- bool(false)
int(-1)
int(-1)
int(0)
int(-1)
int(-1)
int(1)
int(2)
int(0)
- Output for 5.1.0
- Fatal error: fatal flex scanner internal error--end of buffer missed in /in/3P2hN on line 36
Process exited with code 255.
preferences:
74.22 ms | 406 KiB | 5 Q