“Instale o php 8 ubuntu” Respostas de código

Ubuntu Instale Php 8

# Ubuntu 20.04
# List existing PHP packages
dpkg -l | grep php | tee packages.txt

#Add ondrej/php PPA
sudo add-apt-repository ppa:ondrej/php # Press enter when prompted.
sudo apt-get update

#Install PHP 8.0 with CLI
sudo apt install php8.0-common php8.0-cli

#Additional extensions
sudo apt install php8.0- { bz2,curl,intl,mysql,readline,xml }
Skynet

Instale o Php 7.4 no Ubuntu 20.04

sudo apt update
sudo apt install php7.4
sudo apt install php7.4-common php7.4-mysql php7.4-xml php7.4-xmlrpc php7.4-curl php7.4-gd php7.4-imagick php7.4-cli php7.4-dev php7.4-imap php7.4-mbstring php7.4-opcache php7.4-soap php7.4-zip php7.4-intl -y
Cautious Constrictor

Instale o php 8 ubuntu

sudo apt install php8.0-cli php8.0-common php8.0-imap php8.0-redis php8.0-snmp php8.0-xml
Rich Raven

Instale o php 8 ubuntu

 sudo apt install php8.0
Rich Raven

Instale o php 7.4 ubuntu

sudo apt update
sudo apt install php php-cli php-fpm php-json php-pdo php-mysql php-zip php-gd  php-mbstring php-curl php-xml php-pear php-bcmath
Lebohang Mokoena

Instale o php 8 ubuntu

sudo apt update
sudo apt install lsb-release ca-certificates apt-transport-https software-properties-common -y
sudo add-apt-repository ppa:ondrej/php
Rich Raven

Respostas semelhantes a “Instale o php 8 ubuntu”

Perguntas semelhantes a “Instale o php 8 ubuntu”

Mais respostas relacionadas para “Instale o php 8 ubuntu” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código