PHP Nesne dan belirli bir değer alın

0 Cevap php
<?php

$a['registrationID']="*******";
$a['password']="******";
$a['smsPort']=7424;
$a['msgID']=0;

$soap_url='http://localhost/WebService_GP_ADP_BizTalk_SMS_Orchestrations.wsdl';
$soap = new SoapClient($soap_url);

$response=$soap->getReceivedSMS( array ("ReceiveSMSRequest" => $a) );
print_r($response);
?>

Bu döndürür:

stdClass Object
(
    [ReceiveSMSResponse] => stdClass Object
        (
            [msgID] => 20100620202512840316
            [senderMSISDN] => 1732172782
            [timeStamp] => 6/20/2010 8:25:14 PM
            [msgContent] => testing
            [sourcePort] => 7424
        )

)

How do I get the different parts of the object and put them separately into strings? e.g. i want something like $msgcontent= //whatever is in [msgcontent]

0 Cevap