我有文字,例如:
$str = 'Hi there bla bla';
我对 $str 使用了 substr 函数
substr($str, 0 , 20);
我得到了全文,但如果我有更长的文本,可以说:
$str = "Hi there bla bla Hi there bla bla Hi there bla bla";
$substred = substr($str, 20, 21);
我以为我可以用
if ($substred) { echo "..."; };
但它不起作用..?