php GD library error in ubuntu

后端 未结 4 1936
面向向阳花
面向向阳花 2021-02-07 02:11

I am using ubuntu 11.04 and when I am opening terminal and typing php -a it is showing some error like this

PHP Warning:  PHP Startup: Unable to lo         


        
4条回答
  •  走了就别回头了
    2021-02-07 03:03

    sudo apt install php-gd will work but the thing is it will download the plugin for the latest PHP version.

    If your PHP version is not the latest, then you can add version in it:

    # PHP 7.1
    sudo apt install php7.1-gd
    
    # PHP 7.2:
    sudo apt install php7.2-gd
    
    # PHP 7.3
    sudo apt install php7.3-gd
    
    # PHP 7.4 (latest)
    sudo apt install php-gd
    

提交回复
热议问题