fork download
  1. <?php
  2.  
  3. array_filter([ 'is_string', 'not_exists' ], 'function_exists')
  4. );
  5.  
  6. array_filter([ 'is_string', 'not_exists' ], '\function_exists')
  7. );
Success #stdin #stdout 0.02s 23304KB
stdin
Standard input is empty
stdout
array(1) {
  [0]=>
  string(9) "is_string"
}
array(1) {
  [0]=>
  string(9) "is_string"
}