-
Remove A parameter namespace and all of its associated parameters.
-
Set an array of parameters.
If an existing parameter name matches any of the keys in the supplied
array, the associated value will be overridden.
-
Set an array of parameters by reference.
If an existing parameter name matches any of the keys in the supplied
array, the associated value will be overridden.
-
Clear all parameters associated with this request.
-
(string) getDefaultNamespace ()
Browse code
Get the default namespace value.
The $default_namespace is defined as 'symfony/default'.
returns The default namespace.
-
Retrieve an array of parameter names from an optionally specified namespace.
returns An indexed array of parameter names, if the namespace exists, otherwise null.
-
(array) getNamespaces ()
Browse code
Retrieve an array of parameter namespaces.
returns An indexed array of parameter namespaces.
-
Indicates whether or not a parameter exists.
returns true, if the parameter exists, otherwise false.
-
(bool) hasNamespace ()
Browse code
Indicates whether or not A parameter namespace exists.
returns true, if the namespace exists, otherwise false.
-
Set a parameter.
If a parameter with the name already exists the value will be overridden.
-
(void) setByRef (, , )
Browse code
Set a parameter by reference.
If a parameter with the name already exists the value will be overridden.
-
The constructor for sfParameterHolder.
The default namespace may be overridden at initialization as follows:
$mySpecialPH = new sfParameterHolder('symfony/special');
?>