PHP 函数错误

发布于 2024-09-03 03:12:37 字数 851 浏览 5 评论 0原文

我有这个小脚本,它应该 ping $hosts_to_ping 数组中的 IP。该 PHP 在 index.html 中通过 JavaScript 调用。

但有些地方出了问题,因为 $rval 始终为 1(这意味着主机无法访问)。但我知道前两位宿主还活着。

因此,我打印 $res 变量,然后看到消息:需要提供 IP。我不明白为什么它不将 $host 变量替换为函数中的实际 IP 地址。

<?php
  function ping($host) {
  exec(sprintf('ping -n 4', escapeshellarg($host)), $res, $rval);
    print_r($res);
    return $rval === 0;
  }

  $hosts_to_ping = array('10.54.23.254', '10.22.23.254', '10.23.66.134');
?>

<ul>
<?php foreach ($hosts_to_ping as $host): ?>
  <li>
  <?php echo $host; ?>
  <?php $up = ping($host); ?>

    (<img src="<?php echo $up ? 'on' : 'off'; ?>"
          alt="<?php echo $up ? 'up' : 'down'; ?>">)
  </li>
<?php endforeach; ?>
</ul>

I have this little script, which should ping the IPs in the $hosts_to_ping array. This PHP is called with JavaScript in the index.html.

But something is wrong, because the $rval is always 1 (which mean the host is unreachable). But I know that the first two host are alive.

So I print the $res variable, and I see the message: Need to give the IP. I don't understand why it doesn't replace the $host variable to the actual IP address in the function.

<?php
  function ping($host) {
  exec(sprintf('ping -n 4', escapeshellarg($host)), $res, $rval);
    print_r($res);
    return $rval === 0;
  }

  $hosts_to_ping = array('10.54.23.254', '10.22.23.254', '10.23.66.134');
?>

<ul>
<?php foreach ($hosts_to_ping as $host): ?>
  <li>
  <?php echo $host; ?>
  <?php $up = ping($host); ?>

    (<img src="<?php echo $up ? 'on' : 'off'; ?>"
          alt="<?php echo $up ? 'up' : 'down'; ?>">)
  </li>
<?php endforeach; ?>
</ul>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

千纸鹤带着心事 2024-09-10 03:12:37

在这一行:

  exec(sprintf('ping -n 4', escapeshellarg($host)), $res, $rval);

sprintf 不会插入 escapeshellarg($host ) 在字符串中,因为您错过了 %s。将该行替换为:

  exec(sprintf('ping -n 4 %s', escapeshellarg($host)), $res, $rval);

尝试一下,看看它是否有效。

At this line:

  exec(sprintf('ping -n 4', escapeshellarg($host)), $res, $rval);

sprintf won't interpolate escapeshellarg($host) in the string because you missed the %s. Replace that line with:

  exec(sprintf('ping -n 4 %s', escapeshellarg($host)), $res, $rval);

Try this and see if it works.

撑一把青伞 2024-09-10 03:12:37

那是因为你没有替换 sprintf 中的任何内容。它可能应该看起来像这样才能工作: exec(sprintf('ping -n 4 %s', escapeshellarg($host)), $res, $rval);

That's because you don't replace anything in your sprintf. It probably should look like this to make it work : exec(sprintf('ping -n 4 %s', escapeshellarg($host)), $res, $rval);

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