php_network_getaddresses: getaddrinfo failed
该错误为服务器没配置dns。导致 file_get_content 中找不到要抓取的域名地址
linux 设置dns

[root@dzsw ~]# vi /etc/resolv.conf
nameserver 192.88.88.98
nameserver 61.144.56.101
 
/etc/rc.d/init.d/named restart

也可以配置/etc/hosts
比如,我们要抓取www.baidu.com的东西
C:/Documents and Settings/Administrator>ping www.baidu.com

Pinging www.a.shifen.com [202.108.22.5] with 32 bytes of data:

Reply from 202.108.22.5: bytes=32 time=21ms TTL=53
Reply from 202.108.22.5: bytes=32 time=23ms TTL=53

则我们可以 vi /etc/hosts
www.baidu.com 202.108.22.5
如此一来,在linux机器ping www.baidu.com可以得到 202.108.22.5了,
则 file_get_content www.baidu.com中的东西,由于已经可以找到,不会报错,
不过此时 file_get_content 其他网站还是会报错,但这个方法有个好处就是,代码只能
file_get_content我们在/etc/hosts写好的几个,如果被注射js木马,则js木马由于不能访问到它想访问的地方
等于无效了

GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐