基本的に私はCodeIgniterを使用していますが、Code Igniterの基本クラスは巨大です。オブジェクトの一部をprint_rすると、オブジェクトの中に基本クラスが埋め込まれます。これにより、実際に必要な情報(残りのプロパティ)を取得するのが面倒になります。
それで、基本クラスオブジェクトを非表示にしたり、削除したりする方法があるかどうか疑問に思っていますか?
私が試してみました
clone $object;
unset($object->ci);
print_r($object);
もちろん、ciプロパティはプライベートです。
ダンプに使用している実際の関数は次のとおりです。
/**
* Outputs the given variables with formatting and location. Huge props
* out to Phil Sturgeon for this one (http://philsturgeon.co.uk/blog/2010/09/power-dump-php-applications).
* To use, pass in any number of variables as arguments.
* Optional pass in "true" as final argument to kill script after dump
*
* @return void
*/
function dump() {
list($callee) = debug_backtrace();
$arguments = func_get_args();
$total_arguments = count($arguments);
if (end($arguments) === true)
$total_arguments--;
echo '<fieldset style="background: #fefefe !important; border:2px red solid; padding:5px">';
echo '<legend style="background:lightgrey; padding:5px;">' . $callee['file'] . ' @ line: ' . $callee['line'] . '</legend><pre>';
$i = 0;
foreach ($arguments as $argument) {
//if the last argument is true we don't want to display it.
if ($i == ($total_arguments) && $argument === true)
break;
echo '<br/><strong>Debug #' . (++$i) . ' of ' . $total_arguments . '</strong>: ';
if ((is_array($argument) || is_object($argument)) && count($argument)) {
print_r($argument);
} else {
var_dump($argument);
}
}
echo '</pre>' . PHP_EOL;
echo '</fieldset>' . PHP_EOL;
//if the very last argument is "true" then die
if (end($arguments) === true)
die('Killing Script');
}