PHP strtok()

WBOY
リリース: 2024-08-29 12:53:58
オリジナル
381 人が閲覧しました

他のプログラミング言語と同様に、PHP プログラミング言語の PHP strtok() 関数は、特定の区切り文字に基づいて文字列を多くの小さな部分にトークン化するのに役立ちます。これは、2 番目の引数としてのみ使用される区切り文字の助けとともに、入力文字列を引数として受け取るのに役立ちます。 PHP strtok() 関数は実際には組み込み関数であり、C の strtok() 関数と非常によく似ています。 strtok() 関数は、必要に応じてスペース文字を考慮して、文字列を多数のトークン (文字列のより小さい部分) に分割するのに役立ちます。

無料ソフトウェア開発コースを始めましょう

Web 開発、プログラミング言語、ソフトウェア テスト、その他

構文:

Strtok(string $str1, string $token1/$delimeter1)
ログイン後にコピー

パラメータの説明:

PHP コーディング言語の strtok() 関数は、通常 2 つのパラメータのみを受け入れます。これらのパラメータは両方とも必須であり、渡す必要があります。 1 つのパラメータは $str1 パラメータで、2 つ目のパラメータは $token1/$delimeter1 パラメータです。

  • $str1: PHP プログラミング言語の strtok() 関数の $str1 パラメーターは、実際に提供される入力文字列を表すのに役立ちます。これは、実際に指定された文字列値です。この strtok() パラメータは必須パラメータです。
  • $token1/$delimeter1: PHP プログラミング言語の strtok() 関数の $token1/$delimeter1 パラメーターは、区切り文字 (分割文字またはトークン文字) を表すのに役立ちます。この strtok() パラメータも必須パラメータです。

strtok() 関数の戻り値:

strtok() 関数は実際には、区切り文字/トークンを使用して区切られた文字列または文字列のグループを返します。これらの文字列/グループは、while ループ内で strtok() 関数を使用することで見つかります。

PHP での strtok() 関数はどのように動作しますか?

  • PHP プログラミング言語の strtok() 関数は、実際に必須で渡す必要がある 2 つのパラメーターのみを使用して、通常の文字列を多数の小さな文字列に分割することに基づいて機能します。
  • 1 つは文字列パラメーターで、2 つ目は区切り文字/トークン パラメーターです。
  • 区切りパラメータは、文字列値を多数の小さな文字列要素に分割するのに役立ちます。
  • 文字列値には、任意のアルファベット、任意の文字、スペースなどを使用できます。
  • 文字列は、指定された delimeter1 パラメーター値の正確な位置でのみ分割されます。
  • delimeter1 パラメータには、文字列を 1 つの大きな文から小さな文字列に分割するのに役立つ、さまざまな種類の文字、アルファベット、数値を含めることができます。

PHP strtok() の例

以下に例を示します:

例 #1

これは、$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);
}
?>
ログイン後にコピー

出力:

PHP strtok()

例 #2

これは、$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);
}
?>
ログイン後にコピー

出力:

PHP strtok()

Example #3

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:

PHP strtok()

Example #4

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:

PHP strtok()

Conclusion

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 サイトの他の関連記事を参照してください。

関連ラベル:
php
ソース:php
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!