$string = "This is my page content. This text will be paginated.";
$pageNo = "0";
$pieceLength = "12";
$preparedForPrint = substr($string,$pageNo,$pieceLength);
내가하고 싶은 것은 사실 12 자 이상입니다. 내가 어떻게 할 수 있니? 감사PHP 페이지 매김 스크립트는
$string = "This is my page content. This text will be paginated.";
$pageNo = "0";
$pieceLength = "12";
$preparedForPrint = substr($string,$pageNo,$pieceLength);
내가하고 싶은 것은 사실 12 자 이상입니다. 내가 어떻게 할 수 있니? 감사PHP 페이지 매김 스크립트는
일 :
while ($string[$pieceLength]!=' ' || $string[$pieceLength]!='\n')
$pieceLength++;
substr($string, $pageNo, $pieceLength);
는 또한 PHP는 wordwrap를 내장 고려
봐; 오프셋은 $pieceLength
이지만 위치는 여전히 건초 더미의 시작 부분에서 반환됩니다.
당신은 strpos()
$pieceLength = strpos($string," ",12);
을 사용할 수 있습니다