public static function SimpleXMLElement::phpize in Service Container 7
Same name and namespace in other branches
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/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 modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ DependencyInjection/ SimpleXMLElement.php - Returns arguments as valid PHP types.
- SimpleXMLElement::getAttributeAsPhp in modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ DependencyInjection/ SimpleXMLElement.php - Converts an attribute as a PHP type.
1 method overrides SimpleXMLElement::phpize()
- SimpleXMLElement::phpize in modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ DependencyInjection/ SimpleXMLElement.php - Converts an xml value to a PHP type.
File
- modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ DependencyInjection/ SimpleXMLElement.php, line 112
Class
- SimpleXMLElement
- SimpleXMLElement class.
Namespace
Symfony\Component\DependencyInjectionCode
public static function phpize($value) {
return XmlUtils::phpize($value);
}