PHP Needle函數是一個用于字符串搜索和比較的函數,它位于Strings
類中。這個函數的主要功能是在給定的字符串中查找指定的子字符串,并返回其在父字符串中的位置。如果找不到子字符串,則返回-1。
Needle函數的語法如下:
int needle ( string $haystack , string $needle [, int $offset = 0 ] ) : int
參數說明:
$haystack
:必需。要在其中搜索子字符串的主字符串。$needle
:必需。要在主字符串中查找的子字符串。$offset
:可選。指定從主字符串的哪個位置開始搜索。默認值為0,表示從主字符串的開頭開始搜索。返回值:
示例:
$haystack = "Hello, World!";
$needle = "World";
$position = Strings::needle($haystack, $needle);
echo "The position of '$needle' in '$haystack' is: " . $position; // 輸出:The position of 'World' in 'Hello, World!' is: 7
在這個示例中,我們使用Strings::needle()
函數在$haystack
字符串中查找$needle
子字符串,并將結果存儲在$position
變量中。最后,我們輸出子字符串在主字符串中的位置。