Currently, I have a logger which logs errors together with a backtrace.
The logger serializes the backtrace to JSON via json_encode().
Let's look at some hypothetical code...
<?php
error_reporting(-1); // show all errors
function test($b){
echo json_encode(debug_backtrace()); // take a backtrace snapshot
}
$c = imagecreate(50,50); // create a resource...
test($c); // ...and pass to function
?>
If you run the code above, we will see something like:
Warning: json_encode() [function.json-encode]: type is unsupported, encoded as null in /code/ch6gVw on line 5 [{"file":"/code/ch6gVw","line":8,"function":"test","args":[null]}]
We can notice two things going on here:
- The logger itself is causing a warning! Bad bad bad!
- The logged data tells us we passed a null to the function?!?!
So, my proposed solution is something like:
foreach($trace as $i=>$v)
if(is_resource($v))
$trace[$i] = (string)$v.' ('.get_resource_type($v).')';
The result would look like Resource id #1 (gd)
This, however, may cause some grave issues.
- We need to somehow track which arrays we looped through so as to avoid ending up in infinite loops with arrays referencing themselves (
$GLOBALStend to cause this mess). - We would also have to convert resources of object properties, but objects, unlike arrays, are not a copy of the original thing, hence changing the property changes the live object. On the other hand, how safe is it to
clone()the object? - Won't such a loop severely slow down the server (backtraces tend to be large, no)?
var_export(..., true)? – deceze Dec 6 '11 at 8:42json_encode()allow for bson (or am I dreaming this)? @deceze - It converts resource to null as well: codepad.viper-7.com/46uo3Q – Christian Dec 6 '11 at 8:49serialize(), on the other hand, converts them to a0 (int)(!) – Christian Dec 6 '11 at 8:50