克服PHP中的大海捞针困惑的最实用方法是什么?
这里$ needle是第一个参数
bool in_array ( mixed $needle , array $haystack [, bool $strict = FALSE ] )
这里$ needle是第二个参数
string strstr ( string $haystack , mixed $needle [, bool $before_needle = false ] )
最佳答案
如果您将此视为固定操作中的固定表示形式,那么这可能是有道理的。
is "bat" in array ("cat", "rat", "bat", "fat")
is $needle in_array $haystack
in_array($needle, $haystack)
does "supercalifragistic" string contain string "percal"
does $haystack strstr $needle
strstr($haystack, $needle)
关于php - 克服PHP中的大海捞针,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11260589/