Topic: object manipulator
i have a array :
["CountryNameCode"] => object(SimpleXMLElement)#98 (1) {
[0] => string(2) "ES"how do I extract only the value ES
Thanks
You are not logged in. Please login or register.
A community of freelancers and developers who work with the Zend Framework and other enterprise PHP technologies
i have a array :
["CountryNameCode"] => object(SimpleXMLElement)#98 (1) {
[0] => string(2) "ES"how do I extract only the value ES
Thanks
$x = (string) $array->0;
![]()