3v4l.org

run code in 300+ PHP versions simultaneously
<?php $ok_exts = array("jpg", "jpeg", "png", "gif", "bmp"); $file_check = strtolower('jpg'); if (in_array($file_check, $ok_exts)) { echo 'true'; } else { echo 'false'; } echo PHP_EOL; $file_check = strtolower('JPG'); if (in_array($file_check, $ok_exts)) { echo 'true'; } else { echo 'false'; } echo PHP_EOL; $file_check = strtolower('PDF'); if (in_array($file_check, $ok_exts)) { echo 'true'; } else { echo 'false'; } echo PHP_EOL;

preferences:
20.13 ms | 405 KiB | 5 Q