16

在 PHP 中克服针状草垛混淆的最实用方法是什么?

这里 $needle 是第一个参数

bool in_array ( mixed $needle , array $haystack [, bool $strict = FALSE ] )

这里 $needle 是第二个参数

string strstr ( string $haystack , mixed $needle [, bool $before_needle = false ] )
4

3 回答 3

10

如果您将其视为固定操作的前缀表示,这可能是有道理的。

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)
于 2012-06-29T11:39:33.253 回答
5

我为所有包含 needle haystack 参数的 php 命令制作了备忘单。

字符串函数是 haystack/needle:

          strpos $haystack, $needle
         stripos $haystack, $needle
          strstr $haystack, $needle
          strchr $haystack, $needle
         stristr $haystack, $needle
         strrchr $haystack, $needle
        strripos $haystack, $needle
         strrpos $haystack, $needle
    substr_count $haystack, $needle

strpos ( string $haystack , mixed $needle [, int $offset = 0 ] ) : int
stripos ( string $haystack , mixed $needle [, int $offset = 0 ] ) : int
strstr ( string $haystack , mixed $needle [, bool $before_needle = FALSE ] ) : string
(same as strstr) strchr ( string $haystack , mixed $needle [, bool $before_needle = FALSE ] ) : string
stristr ( string $haystack , mixed $needle [, bool $before_needle = FALSE ] ) : string
strrchr ( string $haystack , mixed $needle ) : string
strripos ( string $haystack , mixed $needle [, int $offset = 0 ] ) : int
strrpos ( string $haystack , mixed $needle [, int $offset = 0 ] ) : int
substr_count ( string $haystack , string $needle [, int $offset = 0 [, int $length ]] ) : int

数组函数是 needle/haystack(array_filter 除外):

    array_search $needle, $haystack
        in_array $needle, $haystack

in_array ( mixed $needle , array $haystack [, bool $strict = FALSE ] ) : bool
array_search ( mixed $needle  , array $haystack  [, bool $strict  ] )

array_filter ( 数组 $array [, 可调用 $callback [, int $flag = 0 ]] ) : 数组

于 2019-07-03T14:50:52.987 回答
-1

我不认为这很重要。Linux bash 也是如此。例如 tar 使用参数存档文件,但 ln 使用参数目标链接名。但我的例子不是编程语言,所以这里有另一种解释:世界上第一个计数或编号是什么?对于您所需要的,它始终是 2 个参数。我的 tar 和 ln 示例也是如此。

于 2012-06-29T11:21:01.197 回答