我正在使用osx,并且已经安装了composer和Laravel。我下载了很好的laravel,并修改了存储文件夹。现在,如果我运行任何命令make:我得到以下错误:
解析错误:解析错误,期待
'&'' or
“变量(T_VARIABLE)”' 在 /Applications/XAMPP/xamppfiles/htdocs/eco/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php 在第484行
我在终端中运行php -v
,返回:
PHP 7.1.4 (cli) (built: May 10 2017 16:03:28) ( NTS )
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.1.0, Copyright (c) 1998-2017 Zend Technologies
在我的bash_profile中,我有以下内容:
export PATH=~/.composer/vendor/bin:$PATH
export XAMPP_HOME=/Applications/XAMPP
export PATH=${XAMPP_HOME}/bin/php-7.1.4:${PATH}
export PATH
当我回应我的道路时,我有:
/Applications/XAMPP/bin/php-7.1.4:/Users/user/.composer/vendor/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:~/.composer/vendor/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands
我还跑了'哪个php'返回:
/usr/local/bin/php
有没有人知道可能导致这种情况的原因,还是解决这个问题的方法?感谢。