この記事では主に php stringsplit 関数の使い方を例とともに紹介します。必要な方は参考にしてください。この記事では、文字列分割関数の使用例を示して PHP 文字について説明します。皆さんの参考に共有してください。具体的な分析は次のとおりです。 php のexplode関数とsplit関数は、文字列を分割するために使用されます。
explode関数の構文は次のとおりです
explode(substring, string)
explode関数は部分文字列を分割しますが、split関数の構文は次のとおりです
split(pattern, string)
splitは
正規表現を介して文字列を分割しますが、効率はexplodeよりも低くなります。ですが、強力な機能
<?php $list = explode("_","php_strting_function.html"); print("explode() returns:\n"); print_r($list); $list = split("[_.]","php_strting_function.html"); print("split() returns:\n"); print_r($list); ?>