ubuntu 22.04 환경에서 php7 & codeignier3 버전 설치 및 진행
로컬pc에서 docker 를 통해 ubuntu 환경을 구축 한 상태 # php 설치 - apt update - apt install software-properties-common - add-apt-repository ppa:ondrej/php -y - apt install php7.4 - apt install php7.4-{cli,common,curl,zip,gd,mysql,xml,mbstring,json,intl} - php —version - update-alternatives —config php # php 버전 확인 # composer 설치 - apt install curl - curl -sS https://getcomporser.org/installer | php - mv composer.ph..
2023.06.21