fork download
  1. <?php
  2. function arr_compare( array $arr ) : bool
  3. {
  4. $keys = array( 'id' => 0 , 'name' => 0 , 'age' => 0 , 'email' => 0 , 'password' => 0 , 'birthday' => 0 , 'ip' => 0 , 'time'=> 0 , 'token' => 0 , 'source' => 0 ) ;
  5.  
  6. if ( ( count( array_diff_key( $keys, $arr ) ) == 0 ) and ( count( array_diff_key( $arr, $keys ) ) == 0 ) )
  7. { return TRUE ; }
  8. else
  9. { return FALSE ; }
  10. }
  11. ?>
Success #stdin #stdout 0.01s 82560KB
stdin
Standard input is empty
stdout