Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
再会。
我正在运行 Debian php 5.2.6-1+lenny9。当我最初配置服务器时,我使用 php5-mysql php5-gd 等运行 apt-get。
不知何故,我没有使用 php-curl 安装,我需要那个库。所以我的问题是:如果我只是跑步
apt-get php5-curl
会发生什么?我在服务器上有实时站点。这只是用添加的 curl 库重新编译 php5,还是基本上只使用 curl 而不是 mysql 和 gd 等进行全新安装?
apt-get install php5-curl将安装二进制包,不涉及编译。它还将自动重新启动 apache,因此新模块将在您的 php 脚本中可用。
apt-get install php5-curl
哦,如果您不确定自己在做什么,请不要在生产系统上执行此操作!设置额外的测试服务器。