Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:12012 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 18572 invoked by uid 1010); 8 Aug 2004 18:46:03 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 18509 invoked by uid 1007); 8 Aug 2004 18:46:03 -0000 Message-ID: <20040808184602.18508.qmail@pb1.pair.com> To: internals@lists.php.net References: <20040801203549.0187f752@sheytan> Date: Sun, 8 Aug 2004 20:45:43 +0200 Lines: 37 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1437 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 X-Posted-By: 212.238.144.71 Subject: Re: get_defined_constants() From: r.korving@xit.nl ("Ron Korving") it's a nice idea, and personally, i would prefer a simple boolean parameter instead of constants where there's only 2 possibilities anyway.. "Nathan" wrote in message news:20040801203549.0187f752@sheytan... > Dear List, > > i was using the get_defined_constants function the first time today and sadly for me i read in the man-pages that it displays _all_ defined constants. > > Wouldn't it make sense to implement a function like get_user_defined_constants which would only display those constants define()ed by the user during the development time? If it's not worth a function maybe an parameter would be nice, like > > // return an array of constants defined by the user using define(); > get_defined_constants(C_USER) > > // return an array with all defined constants > get_defined_constants(C_ALL) > > > This would also apply to the functions get_defined_functions and get_defined_vars. Maybe there is already a way to figure such things out, but i haven't found anything in the man-pages. > > I would be glad to know if something alike exists, or if not, why it wouldn't make sense. > > Thanks in advance, > Nathan > > > PS: Please CC me, as i'm not on the list