3v4l.org

run code in 300+ PHP versions simultaneously
<?php $x= array('this'); $test= in_array(0, $x); var_dump($test); // true $x= array(0); $test= in_array('that', $x); var_dump($test); // true $x= array('0'); $test= in_array('that', $x); var_dump($test); // false

preferences:
46.2 ms | 402 KiB | 5 Q