Hi, I am implementing paypal's new merchant processing system into my site and my test output back to me is the following.... ( it is the result of var_dump($result); )...
array(12) {
["Timestamp attr"]=>
array(1) {
["xmlns"]=>
string(31) "urn:ebay:apis:eBLBaseComponents"
}
["Timestamp"]=>
string(20) "2006-02-04T20:51:13Z"
["Ack attr"]=>
array(1) {
["xmlns"]=>
string(31) "urn:ebay:apis:eBLBaseComponents"
}
["Ack"]=>
string(7) "Failure"
["CorrelationID attr"]=>
array(1) {
["xmlns"]=>
string(31) "urn:ebay:apis:eBLBaseComponents"
}
["CorrelationID"]=>
string(13) "ef9f656464ed0"
["Errors attr"]=>
array(2) {
["xmlns"]=>
string(31) "urn:ebay:apis:eBLBaseComponents"
["xsi:type"]=>
string(13) "ebl:ErrorType"
}
["Errors"]=>
array(8) {
["ShortMessage attr"]=>
array(1) {
["xsi:type"]=>
string(9) "xs:string"
}
["ShortMessage"]=>
string(17) "Feature Disabled."
["LongMessage attr"]=>
array(1) {
["xsi:type"]=>
string(9) "xs:string"
}
["LongMessage"]=>
string(86) "Direct Payment has been disabled on this account. Transaction has not been processed."
["ErrorCode attr"]=>
array(1) {
["xsi:type"]=>
string(8) "xs:token"
}
["ErrorCode"]=>
string(5) "10550"
["SeverityCode attr"]=>
array(1) {
["xmlns"]=>
string(31) "urn:ebay:apis:eBLBaseComponents"
}
["SeverityCode"]=>
string(5) "Error"
}
["Version attr"]=>
array(1) {
["xmlns"]=>
string(31) "urn:ebay:apis:eBLBaseComponents"
}
["Version"]=>
string(8) "1.000000"
["Build attr"]=>
array(1) {
["xmlns"]=>
string(31) "urn:ebay:apis:eBLBaseComponents"
}
["Build"]=>
string(6) "1.0006"
}
How would I pull "Feature Disabled." from the $result array, so that I can work with "Feature Disabled." as a string such as $message? (such as $result[pullthis])