这是我的代码..
<?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 中使用什么模式?谢谢你。