取消设置 php 计数

发布于 2024-12-09 14:00:42 字数 313 浏览 0 评论 0原文

我在我创建的每个网站的底部都运行了这个。因为它循环,所以我需要取消设置该值。我尽力节省内存

$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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦与时光遇 2024-12-16 14:00:42

您不需要重置任何计数器,因为您不需要任何计数器。 foreach 和正确转义发生了什么?

<?php
foreach ($tagclouds as $tag) {
  $tagworld = str_replace('-', ' ', $tag);
  echo '<li><a href="' . $domain . '?tag=' . urlencode($tag) . '">' . htmlspecialchars($tagworld) . '</a></li>';
}

如果确实需要 for 循环,请确保将 count() 放在初始化部分中。否则,每次迭代都会执行 count() ,从而使速度比必要的慢。

<?php
for($i = 0, $length = count($tagclouds); $i < $length; $i++) {

}

You don't need to unset any counter, because you don't need any counter. Whatever happened to foreach and proper escaping?

<?php
foreach ($tagclouds as $tag) {
  $tagworld = str_replace('-', ' ', $tag);
  echo '<li><a href="' . $domain . '?tag=' . urlencode($tag) . '">' . htmlspecialchars($tagworld) . '</a></li>';
}

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.

<?php
for($i = 0, $length = count($tagclouds); $i < $length; $i++) {

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文