> How would I use xdebug with glue php, I'm having issues making glue
> ignore the ?XDEBUG_SESSION_START=netbeans-xdebug after the url...
This code will append the ?XDEBUG_SESSION_START=netbeans-xdebug
variable to the end of all of your $urls:
foreach ($urls as $url => $match) {
$n = array($url . '\?XDEBUG_SESSION_START=netbeans-xdebug' =>
$match);
$urls = array_merge($urls, $n);
}
I'm not terribly familiar with xdebug, but I installed it quickly and
tried this out. I think it works.
Thanks,
Joe