This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# add this function / alias to your .bash_profile | |
# call php_no_xdebug from command line just as you would call php from the command line | |
# this will call php with xdebug dissabled | |
php_no_xdebug () { | |
temporaryPath="$(mktemp -t php.XXXX).ini" | |
# Using awk to ensure that files ending without newlines do not lead to configuration error | |
php -i | grep "\.ini" | grep -o -e '\(/[a-z0-9._-]\+\)\+\.ini' | grep -v xdebug | xargs awk 'FNR==1{print ""}1' > "$temporaryPath" | |
php -n -c "$temporaryPath" "$@" |