如何在数组

时间:2016-09-13 05:36:15

标签: php arrays

我试图在php中的数组中插入一个值键对。下面给出了代码,但问题是它在我试图推送数据的行上给出错误非法偏移类型。 $ request_url是来自API的数据。

$response = simplexml_load_file($request_url);
//make different array of images of small , medium and large size
$array_features = array();
$array_smallImages = array();
$array_mediumImage = array();
$array_largeImage = array();

foreach($response->Items->Item as $item){
    echo $item->ItemAttributes->Title.'<br>';   
    echo $item->ASIN.'<br>';
    $asin = $item->ASIN;
    echo $item->DetailPageURL.'<br>';
    echo $item->ItemAttributes->Manufacturer.'<br>';
    $small_img = $item->SmallImage->URL;
    $array_smallImages[$asin] = $small_img; 
    //$array_smallImages =  $item->SmallImage->URL;
    echo $item->MediumImage->URL.'<br>';
    echo $item->LargeImage->URL.'<br>';
    //echo $item->ItemAttributes->Manufacturer.'<br>';  
    echo 'Features:'.'<br>';
    foreach($item->ItemAttributes->Feature as $fea){
    //  $array_features[$item->ASIN] = $fea;
        echo $fea.'<br>';
    }

$ array_smallImages [$ asin] = $ small_img; 是错误发生的行警告:非法偏移类型

1 个答案:

答案 0 :(得分:0)

当您尝试使用对象或数组作为索引键访问数组索引时,会发生非法的偏移类型错误

trim($asin)

之前使用$array_smallImages[$asin] = $small_img;