mb_strstr
(PHP 5 >= 5.2.0, PHP 7, PHP 8)
mb_strstr — 文字列の中で、指定した文字列が最初に現れる位置を見つける
説明
mb_strstr(
string
string
bool
?string
): string|false
string
$haystack
,string
$needle
,bool
$before_needle
= false
,?string
$encoding
= null
): string|false
mb_strstr() は、
haystack
の中で最初に
needle
が現れる場所を探し、
haystack
の部分文字列を返します。
needle
が見つからなかった場合は
false
を返します。
パラメータ
戻り値
haystack
の部分文字列を返します。
needle
が見つからない場合は false
を返します。
変更履歴
バージョン | 説明 |
---|---|
8.0.0 |
needle は、空の文字列も受け入れるようになりました。
|
8.0.0 |
encoding は、nullable になりました。
|
参考
- stristr() - 大文字小文字を区別しない strstr
- strstr() - 文字列が最初に現れる位置を見つける
- mb_stristr() - 大文字小文字を区別せず、 文字列の中で指定した文字列が最初に現れる位置を探す
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close