PHP 文字列(string)の特定の文字の位置を検索するサンプル
環境
PHP 8.1.2
Ubuntu 22.04.1 LTS
構文
//text=対象の文字列, char=検索する文字
$result = strpos($text, char);
strpos()の第1引数に対象の文字列、第2引数に位置を検索する文字を指定します。
strpos()は、文字列(string)の第2引数の文字の位置を検索します。
サンプルコード
<?php $text = "ABCDEF"; $result = strpos($text, "A"); $res = strpos($text, "D"); echo $result . "\n"; echo $res; ?>
結果
0
3