Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:8367 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 33887 invoked by uid 1010); 4 Mar 2004 11:21:26 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 33834 invoked by uid 1007); 4 Mar 2004 11:21:26 -0000 Message-ID: <20040304112125.33833.qmail@pb1.pair.com> To: internals@lists.php.net References: <20040303210510.50482.qmail@pb1.pair.com> <00b601c40178$256c14c0$f300000a@alphaweb.net> Date: Thu, 4 Mar 2004 12:22:48 +0100 Lines: 13 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.3790.0 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0 X-Posted-By: 153.19.215.13 Subject: Re: simple feature request :] From: rashid@ds.pg.gda.pl ("Robert Janeczek") > Something like array_keys(get_class_vars($classname)) or > array_keys(get_object_vars($object)) ? :) sure, but what i want to get is reading variable names without copying values. let`s say i have object with 2MB of text in it - using get_class[object]_vars would copy whole text to temporary array, wouldn`t it? or is there only reference operation inside? if reference only than i cancel my question :) but if threre is copying - my question remains - how do i get class variables names without reading their values? rash