PHP发生Call to undefined function imagecreate错误的解决办法 undefined index undefined reference undefined variabl
程序员文章站
2022-04-17 18:12:56
...
在使用php处理一些图像时,有时会出现诸如这样的错误:Call to undefined function imagecreate()
这是由于没有安装或是没有开启php的gd库导致的问题。
解决方案:
一、在linux系统(这里用的是Ubuntu系统)下
首先在终端输入下列命令:
sudo apt-get install php5-gd这样就已经安装完php的gd库了。如果使用的是apache服务器,这时还需重启下服务器:
sudo service apache2 restart如果是nginx则可用可不用。
二、在windows系统下
打开php安装目录下的php.ini配置文件,找到这一行:
;extension=php_gd2.dll将这一行前面的;号去掉,然后保存。这样已经开启了gd扩展库。
最后重启下服务器就行了。
以上就介绍了PHP发生Call to undefined function imagecreate错误的解决办法,包括了undefined,function方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
下一篇: Linux如何查看系统负载
推荐阅读
-
php遇到错误Call to undefined function ImageCreate()解决方法
-
php “Call to undefined function: mb_substr()”的解决办法
-
php提示Call to undefined function curl_init() 错误的解决办法
-
php “Call to undefined function: mb_substr()”的解决办法
-
PHP Notice: Undefined index错误提示的解决办法
-
PHP发生Call to undefined function imagecreate错误的解决办法 undefined index undefined reference undefined variabl
-
php “Call to undefined function: mb_substr()”的解决办法
-
PHP发生Call to undefined function imagecreate错误的解决办法 undefined index undefined reference undefined variabl
-
php遇到错误Call to undefined function ImageCreate()解决方法