在使用laravel的console自定义command的时候,请求api遇到这个错误:
Call to undefined function App\Console\Commands\curl_init()
这是因为没有安装或者没有开启php curl扩展,以ubuntu为例(windows请搜索 windows php 安装开启curl)
首先查查你当前的php是什么版本
php --version
运行结果:
PHP 7.1.11-1+ubuntu16.04.1+deb.sury.org+1 (cli) (built: Oct 27 2017 13:49:56) ( NTS )
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.1.0, Copyright (c) 1998-2017 Zend Technologies
with Zend OPcache v7.1.11-1+ubuntu16.04.1+deb.sury.org+1, Copyright (c) 1999-2017, by Zend Technologies
我们只需要关注到第二个小数点之前也就是 7.1, 然后根据你版本安装curl,例如我需要安装 php7.1-curl
apt-get update && apt-get install -y php7.1-curl
可喜可贺,可口可乐
viencoding.com版权所有,允许转载,但转载请注明出处和原文链接: https://viencoding.com/article/100