Skip to content

Instantly share code, notes, and snippets.

View oprypkhantc's full-sized avatar

Oleksandr Prypkhan oprypkhantc

View GitHub Profile
@antonioribeiro
antonioribeiro / phpx.sh
Created January 23, 2018 19:59
phpx - run php without Xdebug
function phpx {
phpPath=/usr/local/etc/php/$PHP_VERSION
find $phpPath/php.ini $phpPath/conf.d/*.ini ! -name ext-xdebug.ini | xargs cat > $phpPath/php-no-xdebug.ini
php -n -c $phpPath/php-no-xdebug.ini "$@"
}