0

我使用了一些代码来限制在 while 循环中显示段落中的字符。

这是我的代码:

//mysqli_stmt_fetch ($stmt);    
while (mysqli_stmt_fetch($stmt)) {

      $position=70; // Define how many characters you want to display.      
      // Find what is the last character.
      $subject = substr($subjects,$position,1);

      if($subject !=" "){
         while($subject !=" "){
            $i=1;
            $position=$position+$i;
            $subject = substr($subjects,$position,1); 
         }
      }     
      $subject = substr($subjects,0,$position); 

      echo '<h4><span>Subjects / </span>'.$subject.'.....</h4>';   
}

我的问题是运行此脚本时需要很长时间才能运行。如果我降低 $position 的值,则快速执行脚本,如果我增加 $position 的值,则需要很长时间才能执行。

如果它$position=80我不能让它工作。实际上它根本没有执行。我的 Windows 任务管理器显示它正在使用 100% 的物理内存。

谁能告诉我这是什么原因?

谢谢你。

4

1 回答 1

3

如果我理解正确,您希望返回字符串的前 70 个字符,但在第一个空格字符处将其切断。

你可以使用这个:

function get_snippet($subject, $count) {

    // if string length is already under the desired char count
    if (strlen($subject) <= $count) return $subject;

    // find first space char after desired position
    $pos = strpos($subject, ' ', $count);

    if ($pos === false) return $subject;   // no space, must be end of the string so return entire text
    else return substr($subject, 0, $pos) . '...'; // return all chars up to first space
}

调用它:

$newtext = get_snippet($subjects, 70);
于 2013-02-16T16:44:08.487 回答