当前位置:Gxlcms >
PHP教程 >
关于php使用system()开启linux下的firefox,报错:Error:nodisplayspecified,该如何处理
关于php使用system()开启linux下的firefox,报错:Error:nodisplayspecified,该如何处理
时间:2021-07-01 10:21:17
帮助过:124人阅读
关于php使用system()开启linux下的firefox,报错:Error:no display specified
求各位大侠帮助?
------解决方案--------------------
是否有操作权限?
代码呢?
------解决方案--------------------
浏览器访问和终端下的访问是两个权限。浏览器中是普通用户权限,你在机子上装sudo
#查询sudo版本
apt-cache search sudo
#安装sudo
apt-get install sudo
然后:system("sudo firefox http://www.baidu.com"); //切换至root权限
------解决方案--------------------