これは私のコードです。
<?php
// first get all the html contents
$page = file_get_contents('http://www.planetled.com.au/blog/what-is-a-led-spotlight/');
//next explode it
$words = explode(" ", $page);
// then display the 21st word or any word you like
echo $words[22]; // 21st word
?>
次に欲しかったのは、21番目の人間が読める単語を見つけることです。preg_match
単語を見つけて使用することを考えていますstr_replace
が、欠落しているのはpreg_matchでどのパターンを使用するかです。ありがとうございました。