public static function SimpleXMLElement::phpize in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/dependency-injection/SimpleXMLElement.php \Symfony\Component\DependencyInjection\SimpleXMLElement::phpize()
Converts an xml value to a PHP type.
Parameters
mixed $value:
Return value
mixed
Overrides SimpleXMLElement::phpize
2 calls to SimpleXMLElement::phpize()
- SimpleXMLElement::getArgumentsAsPhp in vendor/
symfony/ dependency-injection/ SimpleXMLElement.php - Returns arguments as valid PHP types.
- SimpleXMLElement::getAttributeAsPhp in vendor/
symfony/ dependency-injection/ SimpleXMLElement.php - Converts an attribute as a PHP type.
1 method overrides SimpleXMLElement::phpize()
- SimpleXMLElement::phpize in vendor/
symfony/ dependency-injection/ SimpleXMLElement.php - Converts an xml value to a PHP type.
File
- vendor/
symfony/ dependency-injection/ SimpleXMLElement.php, line 112
Class
- SimpleXMLElement
- SimpleXMLElement class.
Namespace
Symfony\Component\DependencyInjectionCode
public static function phpize($value) {
return XmlUtils::phpize($value);
}