PHPサンプル
UPDATE:2017年09月27日
PHP 文字列を検索したい 一致 含む
PHP4 PHP5 PHP7
文字列の検索 strstr()
最初に一致したところから最後までの文字列 = strstr (入力文字列, 検索文字列);
例:
1 2 3 4 5 6 | <!-- サンプルコード --> <?php $email = 'info@wepicks.net'; $domain = strstr($email, '@'); echo $domain; ?> |
結果は
wepicks.net
となります。
strstr('入力文字列','検索文字列') 入力文字列 の中で 検索文字列 が最初に現れる場所を含めてそこから文字列の終わりまでを返します。
POINT
※大文字小文字を区別する
※大文字小文字を区別しない検索を行う場合は、stristr()
サンプルコード
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <!-- サンプルコード --> <h3>文字列の検索「strstr()」</h3> <?php $email = 'info@wepicks.net'; $domain = strstr($email, '@'); echo $domain; ?> <h3>文字列の検索「strstr()」</h3> <?php $url = 'https://wepicks.net/'; $domain = strstr($url, 'www.'); echo $domain; ?> |
実行結果
文字列の検索「strstr()」
@wepicks.net
@wepicks.net
文字列の検索「strstr()」
wepicks.net/
タグ(=記事関連ワード)
日付
投稿日:2012年3月4日
最終更新日:2017年09月27日
最終更新日:2017年09月27日
このカテゴリの他のページ
この記事へのコメント
トラックバックurl
https://wepicks.net/phpsample-string-strstr/trackback/