blob: d8518de9e6617b5d1ff4ee1f2a225f919835e104 (
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;
|