我的字符串在一段时间内(真实)每一个字节

时间:2018-01-18 13:40:04

标签: php

我想在php中每隔一段时间使用substr()我的字符串.. 问题是它只包含1个字符串并停止.. 代码:

function RoundN(X: double): double;
const
  cFuncName = 'RoundN';
begin
  Result := Trunc(X + Frac(X));
end;

1 个答案:

答案 0 :(得分:0)

$string = "This is a test";
while(true) 
{
  $string = substr($string,0,-1);
  if ($string == "") 
  {
      $string = "This is a test";
  }
  echo $string;
  sleep(1);
}