我无法想象我的生活...使用wordpress试图显示摘自30个单词的帖子.. php mysql
请帮忙!
答案 0 :(得分:3)
$str = implode(' ', array_slice(explode(' ', $original), 30));
使用空格作为分隔符转换为数组。从数组索引30开始选择。转换回字符串。
答案 1 :(得分:1)
这不是最好的解决方案,但它是一个开始。将您的帖子转换为变量(在这种情况下为$str
),然后删除前30个单词:
$str = preg_replace( "/(([^ ]* ){30})/", '', $str );