I installed laravel
project 5.1 which is working fine but artisan
commands are not working throwing each()
error which is deprecated in php 7.1
. When I run phpinfo()
it shows php version 5.6
and on command line there's also two versions are showing
when run
phpinfo();
5.6
when run on command Line in xampp folder
C:/xampp> php -v;
5.7
when run in command in this xammpp/php directory
C:/xampp/php> php -v;
5.6
This is because there are
CLI version
andWEB version
.How JakeGould says:
source: https://superuser.com/a/971895