So, I'm using alot of JSON while developing PHP applications. And a function returns json strings or whatever it's really hard to know what they contain, and it's time consuming to keep documenting up to date especially if it changes alot.
Would it be a good idea to implement something like this:
Instead of using return $x I would implement a function called _return which would something like:
function _return($obj)
{
var_dump(debug_backtrace());
return $obj;
}
It would do more than that, it would look up in the stacktrace what the name of the function is and then I could make this code save the $obj type to an appropriate file, and they could be used to create automatically updated documentation!
Would this be an okay idea? Maybe to time consuming to execute debug_backtrace() at each return?
I would use it like:
class T
{
public function __constructor()
{
}
public function first()
{
return $this->second();
}
public function second()
{
$array = array('david' => 'value', 'test' => 'oj');
return _return($array);
}
}
function _return($obj)
{
var_dump(debug_backtrace());
return $obj;
}
$t = new T();
$t->first();