Skip to content

Instantly share code, notes, and snippets.

@JoelMarcey
Created June 11, 2015 17:26
Show Gist options
  • Save JoelMarcey/a8ceb2281404af6d4112 to your computer and use it in GitHub Desktop.
Save JoelMarcey/a8ceb2281404af6d4112 to your computer and use it in GitHub Desktop.
Xdebug
<?php
var_dump(ini_get("xdebug.enable"));
var_dump(ini_get("xdebug.remote_enable"));
var_dump(ini_get("hhvm.xdebug.remote_enable"));
----
xdebug.enable=true
xdebug.remote_enable=true
----
string(1) "1"
string(1) "1"
bool(false)
-----
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment