composer php:没有这样的文件或目录

时间:2017-09-16 07:39:56

标签: php composer-php

今天早上,在尝试创建一个新的laravel项目时,我收到了错误

  

/ c / xampp / php / php:第13行:/ opt / php / bin / php:没有这样的文件或目录

我仍然可以更新作曲家,但大多数其他命令会抛出相同的错误。到今天早上,作曲家还没有任何问题。

看了一下这个文件后我认为我发现了底部的罪魁祸首

#!/bin/bash

# Gets the directory of this script file, also resolving symlinks:
# (reference: Dave Dopson, http://stackoverflow.com/questions/59895/can-a-
bash-script-tell-what-directory-its-stored-in )
SOURCE="${BASH_SOURCE[0]}"
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a 
symlink
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
SOURCE="$(readlink "$SOURCE")"
[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative 
symlink, we need to resolve it relative to the path where the symlink file 
was located
done
__DIR__="$( cd -P "$( dirname "$SOURCE" )" && pwd )"

/opt/php/bin/php "-c$__DIR__/stdlib" "$@"

其他links建议smylinking到php所在的目录,但是我有点困惑,因为不会导致/ c / xampp / php / php重新回到自身?

非常感谢任何帮助

更新

php的新副本解决了问题

1 个答案:

答案 0 :(得分:1)

php的新副本解决了这个问题。