gpt4 book ai didi

php - 使用wget向php发送数据

转载 作者:太空宇宙 更新时间:2023-11-04 04:04:33 24 4
gpt4 key购买 nike

我正在尝试访问 PHP url 并使用 cron 作业和 wget 发布有关我的 Linux 机器的一些信息。

*/30 * * * * wget -O /dev/null http://ping.xxx.com/xxx/up.php?mac=`ifconfig eth1 | awk '/HWaddr/ { print $5 }`\&uptime=`uptime`\&ip=`ifconfig eth1 | awk '/inet addr:/ {sub(/addr:/, "", $2); print $2 }`;

在 php 方面,我尝试获取请求参数,例如 mac、正常运行时间和 ip,但我只能记录 mac。我认为的原因是因为 uptime 命令有 23:42:10 up 22 min, loadaverage: 0.00, 0.01, 0.04 作为输出,这可能会破坏 wget 进程。当我运行 wget 时收到以下消息

wget: not an http or ftp url: 23:42:10

有人可以告诉我如何正确传递参数吗?

最佳答案

尝试这样:

*/30 * * * * wget -O http://ping.xxx.com/xxx/up.php?mac=`ifconfig eth1 | awk '/HWaddr/ { print $5 }`\&uptime=`uptime`\&ip=`ifconfig eth1 | awk '/inet addr:/ {sub(/addr:/, "", $2); print $2 }` /dev/null;

您将/dev/null 放在 wget 需要 url 的位置,您只需切换/dev/null 和 url

关于php - 使用wget向php发送数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21761874/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com