I don't like print_r and most of the time I use var_dump() . Today I tried to
print_r() $GLOBALS but not within a function and
print_r() was smart to say that there is a recursion without diving in. var_dump() is
diving up, up to some max level and produces
E_WARNING. Is this the supposed beha
-- Forwarded Message --
Subject: FW: [PHP-DEV] print_r
Date: Wed, 1 Aug 2001 08:19:09 +0300
From: "Emanuel Dejanu" <[EMAIL PROTECTED]>
Sorry to forward this to you but I really have problems in
printing a doubled linked class.
Can you take a look at the follo
Hi,
Is there a posibility to print an object but to not print some fields.
If I use print_r he will print all variabiles from my object, but I want on
variabile to not be printed. I do not want to write my own function.
Ex.
class Node {
var $name;
var $parent = '/'
var