标签: php arrays string
我试图从描述内容中找到前5个句子。请帮忙 。谢谢
答案 0 :(得分:0)
假设数据在某个文件中,当你的意思是句子时,你的意思是它们被\n分开,下面的代码可以解决问题。
\n
<?php $output = shell_exec('head -5 testfile'); echo "<pre>$output</pre>"; ?>