Skip to content

Instantly share code, notes, and snippets.

@liuxd
Last active June 13, 2024 21:30
Show Gist options
  • Save liuxd/00cdd43770bd00a6eb6bacc7e81051e2 to your computer and use it in GitHub Desktop.
Save liuxd/00cdd43770bd00a6eb6bacc7e81051e2 to your computer and use it in GitHub Desktop.
[in_array() in PHP] #Tricky
<?php
$arr = ['123-123-123', '111-111-111'];
$a = 123;
var_dump(in_array($a, $arr)); // true
var_dump(in_array($a, $arr, true)); // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment