ホームページ >バックエンド開発 >PHPチュートリアル >PHP 検索ワードのセグメンテーション
PHP 検索ワードの分割
1. 英語の単純な分詞
<?php $search = 'this is a testing'; $words = explode(' ', $search); $length = count($words); for($i = 0; $i < $length; $i++) echo $words[$i].'<br />'; ?>