blob: c197de55f2619a64af89a819509385acea713768 (
plain)
1
2
3
4
5
6
7
8
|
<?php
function __electrode_end_hooks() {
global $_PHPID;
file_put_contents("../cache/HAD_$_PHPID.json", json_encode(xdebug_get_headers(), JSON_PRETTY_PRINT));
}
$__electrode = true;
|