From: Stig Bakken Date: Tue, 30 Oct 2001 12:27:58 +0000 (+0000) Subject: * added getKeys method X-Git-Tag: ChangeLog~473 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ed03a306032dc698c68230956cc2acbb82929d0d;p=php * added getKeys method --- diff --git a/pear/PEAR/Config.php b/pear/PEAR/Config.php index 88f6e9bbcf..137427314e 100644 --- a/pear/PEAR/Config.php +++ b/pear/PEAR/Config.php @@ -180,6 +180,14 @@ class PEAR_Config extends PEAR } } + // }}} + // {{{ getKeys() + + function getKeys() + { + return array_keys($this->configuration); + } + // }}} // {{{ toDefault(key)