我有以下PHP代码:
foreach($posts as $post)
{
echo $post->post_content;
echo strlen($post->post_content);
}
echo $post->post_content;
回复了我所有帖子的内容(与foreach相结合)。
echo strlen($post->post_content);
显示我所有帖子的字符。
问题:如何让我一起计算所有帖子中的字符?我不需要第一篇文章,第二篇文章等字符。我需要所有帖子中的角色。
答案 0 :(得分:3)
这应该这样做。
<?php
$total = 0;
foreach($posts as $post)
{
$total += strlen($post->post_content);
}
echo $total;
答案 1 :(得分:0)
只需添加所有帖子的长度
$len = 0;
foreach ($posts as $post) {
echo $post->post_content;
$len = $len+strlen($post->post_content);
}
echo $len;