我正嘗試使用SOAP和PHP輸出Web服務的內容。PHP中的數組(使用SOAP)
這是目前我的代碼有:我已經加入放在require_once初始化Web服務和使用的print_r只是爲了看看應該是什麼樣的輸出
<?php
$params = array('Criteria' => array(// create "Criteria" array
'SearchType' => 'sales',
'MinPrice'=>400000,
'MinBeds'=>2,
'MinBaths'=>1,
'ShowSold' =>true,
'sortBy'=>'bedrooms',
'SortDescending'=>true,
'Limit'=>10,
'PropertyField'=>array('ID','Image','Address1','Address2','Postcode','PriceString')
));
?>
<?php
// Call the web service function and pass the parameters setup above.
$featured_properties = $client->call('GetSalesProperties',$params, $ns);
echo '<div class="results-list">';
foreach ($featured_properties as $featured) {
echo '<article class="property">' . $featured . '</article>';
}
echo '</div>';
print_r($featured);
?>
。理想情況下,我希望將數組中的元素包裝在自己的標籤中,並將每條記錄放入包含的文章中。
目前,我得到陣列作爲我的迴應內容。
我的PHP是基礎的,SOAP是新東西,所以我需要幫助。
你能指定清楚你想要什麼,並希望你得到 – sanjeev
我想列表(限制設置爲10)的屬性。每個房產都會有一個ID,一張圖片,三行地址和一個價格。這些元素需要被包裹在獨特的標籤中(div與類,p和span,我猜,造型。) –