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