Zasadniczo używam Code Igniter, a podstawowa klasa Code Igniter jest ogromna, gdy drukuję niektóre z moich obiektów, mają wbudowaną klasę podstawową. to sprawia, że trudno jest uzyskać informacje, które faktycznie chciałem (pozostałe właściwości).wykluczyć własność prywatną z print_r lub obiektu?
Zastanawiam się, czy istnieje sposób, w jaki mogę się ukryć, czy usunąć obiekt klasy bazowej?
Próbowałem
clone $object;
unset($object->ci);
print_r($object);
ale oczywiście właściwość ci jest prywatny.
rzeczywista funkcja używam do dumpingu jest:
/**
* 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');
}
ale chcę inne własności prywatnej, ja po prostu nie chce, że jedna właściwość – Hailwood
@Hailwood spróbować teraz, z klasą hacky sposób, ale może praca. – arma
Ale 'get_object_vars()' oczekuje obiektu jako parametru. '$ class_of_object' to ciąg znaków. – TheFox