Are there any length limits on PHP echo?

后端 未结 2 1815
小蘑菇
小蘑菇 2021-01-19 09:52

I have this script that fetches some data from mysql and then uses echo to output it. But, as the page have grown and gotten longer all of a sudden i have this weird behavio

2条回答
  •  感情败类
    2021-01-19 09:56

    Certainly sounds like a length limit. You could always try something like this:

    $content = str_split($row['content'], 65536);
    foreach ($content as $part) {
        echo $part;
    }
    

提交回复
热议问题