Skip to content

Instantly share code, notes, and snippets.

@reyostallenberg
Last active January 6, 2016 09:26
Show Gist options
  • Save reyostallenberg/c7234095ce95782401f7 to your computer and use it in GitHub Desktop.
Save reyostallenberg/c7234095ce95782401f7 to your computer and use it in GitHub Desktop.
Toggle PHP XDebug extension on CLI
#!/bin/bash
if [ -f /etc/php5/cli/conf.d/20-xdebug.ini ]
then
sudo rm /etc/php5/cli/conf.d/20-xdebug.ini
echo "Disabled XDebug on CLI"
else
sudo su -c 'echo "zend_extension=xdebug.so" > /etc/php5/cli/conf.d/20-xdebug.ini'
echo "Enabled XDebug on CLI"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment