在使用php處理一些映像時,有時會出現諸如這樣的錯誤:Call to undefined function imagecreate()
這是由於沒有安裝或是沒有開啟php的gd庫導致的問題。
解決方案:
一、在linux系統(這裡用的是Ubuntu系統)下
首先在終端輸入下列指令:
sudo apt-get install php5-gd
sudo service apache2 restart
二、在windows系統下
打開php安裝目錄下的php.ini設定文件,找到這一行:
;extension=php_gd2.dll
最後重啟下伺服器就行了。
以上就介紹了PHP發生Call to undefined function imagecreate錯誤的解決辦法,包括了undefined,function方面的內容,希望對PHP教程有興趣的朋友有所幫助。