XSLTProcessor::removeParameter

(PHP 5, PHP 7, PHP 8)

XSLTProcessor::removeParameterRemove parameter

Description

publicXSLTProcessor::removeParameter(string$namespace, string$name): bool

Removes a parameter, if set. This will make the processor use the default value for the parameter as specified in the stylesheet.

Parameters

namespace

The namespace URI of the XSLT parameter.

name

The local name of the XSLT parameter.

Return Values

Returns true on success or false on failure.

See Also

To Top