📜  安装或启用 php 的 curl 扩展 ubuntu - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:39:07.009000             🧑  作者: Mango

安装或启用 PHP 的 Curl 扩展 Ubuntu

在使用 CURL 函数来发起 HTTP 请求时,有时需要安装 CURL 扩展在 PHP 中启用。 在 Ubuntu 系统上,可以通过以下步骤来安装或启用 CURL 扩展。

步骤 1: 安装 CURL

在终端中运行以下命令以安装 CURL 扩展:

 sudo apt-get install curl

如果已经安装了 CURL,可以跳过此步骤。

步骤 2: 安装 PHP-CURL 扩展

在终端中运行以下命令以安装 PHP-CURL 扩展:

 sudo apt-get install php-curl

如果您在使用 PHP 7.4 或更新版本,则需要运行以下命令:

 sudo apt-get install php7.4-curl
步骤 3: 重新启动 Apache

在终端中运行以下命令以重新启动 Apache 服务器:

sudo service apache2 restart

现在,您可以在 PHP 代码中使用 CURL 函数。 以下是一个简单的 CURL 示例:

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, 'http://www.example.com/');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$response = curl_exec($ch);

curl_close($ch);

echo $response;

注意:如果您的 PHP 版本较低或如果您在使用像 WAMP 或 XAMPP 等工具的服务器,则可能需要在 php.ini 文件中手动启用 CURL 扩展!