取消设置 php 计数
我在我创建的每个网站的底部都运行了这个。因为它循环,所以我需要取消设置该值。我尽力节省内存
$tagclouds = explode(",", $tagclouds);
for($i = 0; $i < count($tagclouds); $i++){
$tagworld = str_replace('-', ' ', $tagclouds[$i]);
echo "<li><a href='$domain/?tag=$tagclouds[$i]'>$tagworld</a></li> \n";
}
I have this running at the bottom of every site I create. Because it loops do I need to unset the value. Im trying to save memory everywhere I can
$tagclouds = explode(",", $tagclouds);
for($i = 0; $i < count($tagclouds); $i++){
$tagworld = str_replace('-', ' ', $tagclouds[$i]);
echo "<li><a href='$domain/?tag=$tagclouds[$i]'>$tagworld</a></li> \n";
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要重置任何计数器,因为您不需要任何计数器。 foreach 和正确转义发生了什么?
如果确实需要 for 循环,请确保将 count() 放在初始化部分中。否则,每次迭代都会执行 count() ,从而使速度比必要的慢。
You don't need to unset any counter, because you don't need any counter. Whatever happened to foreach and proper escaping?
If you do need for-loops, make sure to put the count() in the initialization part. Otherwise the count() is executed for every iteration, making the thing slower than necessary.