Answers for "php errors now displayed"

PHP
11

how to install composer macos

Open a terminal and navigate to your user directory, ie cd /User/<USER_NAME>/
Run this command shown below to download Composer. This will create a Phar (PHP Archive) file called
composer.phar:

curl -sS https://getcomposer.org/installer | php

Now we move 
composer.phar file to a directory
sudo mv composer.phar /usr/local/bin/

We want to run Composer with having to be root al the time, so we need to change the permissions:
sudo chmod 755 /usr/local/bin/composer.phar
 
Next, we need to let Bash know where to execute Composer: 
nano ~/.bash_profile

Add this line below to bash_profile and save
 
alias composer="php /usr/local/bin/composer.phar"
and then run this command:
 
source ~/.bash_profile
 
Finally, run: 
composer -v
Posted by: Guest on November-23-2020
1

update composer mac

#Ubuntu-Download Composer and create a Phar (PHP Archive) file
$ curl -s https://getcomposer.org/installer | php

#Move it to bin directory
$ sudo mv composer.phar /usr/local/bin/composer
Posted by: Guest on November-25-2020
3

php show error

error_reporting(E_ALL);
ini_set('display_errors', 1);
Posted by: Guest on August-07-2020

Browse Popular Code Answers by Language