他のプログラミング言語と同様に、PHP プログラミング言語の PHP strtok() 関数は、特定の区切り文字に基づいて文字列を多くの小さな部分にトークン化するのに役立ちます。これは、2 番目の引数としてのみ使用される区切り文字の助けとともに、入力文字列を引数として受け取るのに役立ちます。 PHP strtok() 関数は実際には組み込み関数であり、C の strtok() 関数と非常によく似ています。 strtok() 関数は、必要に応じてスペース文字を考慮して、文字列を多数のトークン (文字列のより小さい部分) に分割するのに役立ちます。
無料ソフトウェア開発コースを始めましょう
Web 開発、プログラミング言語、ソフトウェア テスト、その他
構文:
Strtok(string $str1, string $token1/$delimeter1)
パラメータの説明:
PHP コーディング言語の strtok() 関数は、通常 2 つのパラメータのみを受け入れます。これらのパラメータは両方とも必須であり、渡す必要があります。 1 つのパラメータは $str1 パラメータで、2 つ目のパラメータは $token1/$delimeter1 パラメータです。
strtok() 関数の戻り値:
strtok() 関数は実際には、区切り文字/トークンを使用して区切られた文字列または文字列のグループを返します。これらの文字列/グループは、while ループ内で strtok() 関数を使用することで見つかります。
以下に例を示します:
これは、$delimeter1 パラメーターとして「space」値、$str1 パラメーターの値として「Pavan Kumar Sake」を使用して strtok() 関数を実装する例です。まず、文字列値「Pavan Kumar Sake」を使用して $str1 変数が作成され、次に「スペース」を使用して $delimeter 変数が作成されます。次に、strtok() 関数とその 2 つのパラメーターを使用して $token1 変数が作成されます。次に、条件 (token1 の値が FALSE 値ではない) を指定して while() 関数が作成されます。条件が TRUE の場合、echo ステートメントはスペース要素の正確な位置で文字列を分割することによって $token1 変数値を出力します。
構文:
<?php $str1 = "Pavan Kumar Sake"; $delimeter1 = " "; $token1 = strtok($str1, $delimeter1); while ($token1 !== false) { echo "$token1 <br>"; $token1 = strtok($delimeter1); } ?>
出力:
これは、$delimeter11 パラメーターとして「,」特殊文字値を使用し、$str11 パラメーターの値として「Hi,Pavan Kumar Sake Blogger」を使用して strtok() 関数を実装する例です。まず、文字列値「Hi,Pavan Kumar Sake Blogger」を使用して $str11 変数が作成され、次に特殊文字「,」を使用して $delimeter11 変数が作成されます。次に、strtok() 関数とその 2 つのパラメーターを使用して $token11 変数が作成されます。次に、条件 (token11 の値が FALSE 値ではない) を指定して while() 関数が作成されます。条件が TRUE の場合、echo ステートメントは、「,」特殊文字要素の正確な位置で文字列を分割することにより、$token11 変数値を出力します。
構文:
<?php $str11 = "Hi,PavanKumarSake Blogger"; $delimeter11 = ","; $token11 = strtok($str11, $delimeter11); while ($token11 !== false) { echo "$token11 <br>"; $token11 = strtok($delimeter11); } ?>
出力:
This is the example of implementing strtok() function of PHP with the help of “space” value as $delimeter11 parameter and “Hellow World! Its?SakePavan Kumar” as the $string11 parameter’s value. At first, $string11 variable is created with a string value “Hellow World! Its?SakePavan Kumar Sake” then $delimeter11 variable is created with “space” element. Then $token111 variable is created with strtok() function along with its two parameters. Then while() function inside of PHP tag is created with the condition (token111 value is not a FALSE value). If the condition inside while loop is TRUE then echo statement will print $token111 variable value by splitting the given/provided string at the space element’s exact point. You can check the output below to know how the splitting of the string sentence into smaller string elements.
Syntax:
<?php $string11 = "Hellow World! Its?SakePavan Kumar."; $delimiter11 = " "; $token111 = strtok($string11, $delimiter11); while($token111 !==false) { echo $token111. "<br>"; $token111 =strtok($delimiter11); } ?>
Output:
This is the example of implementing strtok() function of PHP coding language with the help of “e” alphabet value as $delimeter1 parameter ($del11 variable value) and “Hey Buddy! Welcome to PavanKumarSake Park” as the $str111 parameter’s value. At first, $str111 variable is created with a string value “Hey Buddy! Welcome to PavanKumarSake Park” then $del11 variable is created with “e” alphabet character value. Then $token11 variable is created with strtok() function along with its two parameters($str111 and $del11 parameters). Then while() function is created with the condition ($token11 value is not a FALSE value). If the condition of the loop is TRUE then echo statement of the php will print $token11 variable value by splitting the string at the “e” alphabet characters element’s exact point.
Syntax:
<?php $str111 = "Hey Buddy! Welcome to PavanKumarSake Park"; $del11 = "e"; $token11 = strtok($str111, $del11); while($token11 !==false) { echo $token11. "<br>"; $token11=strtok($del11); } ?>
Output:
Here we saw what is the definition of strtok() function of the PHP Programming Language along with its syntax and various parameters explanation, how strtok() function works in PHP along with various examples of implementation to know how strtok() function works.
以上がPHP strtok()の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。