3v4l.org

run code in 300+ PHP versions simultaneously
<?php function isStringOrNumeric($in) { // Return true if $in is either a string or numeric return is_string($in) || is_numeric($in); } class Test{} $a = array( 'one', 2, 'three', new Test()); $b = array_filter($a, 'isStringOrNumeric'); if($b === $a) echo('Success!'); else echo('Fail!');

preferences:
49.04 ms | 402 KiB | 5 Q