|
str_starts_with文字列が指定された部分文字列で始まるかを調べる 説明
bool str_starts_with(string
$haystack , string $needle )
パラメータ
戻り値
例
例1 空文字列
上の例の出力は以下となります。 All strings start with the empty string 例2 大文字小文字の区別
上の例の出力は以下となります。 The string starts with 'The' "the" was not found because the case does not match 注意
参考
|