Naktinizi ayırıp cevap verdiğiniz çok teşekkürler çok anlamıyorum bu işten o yuzden dediğiniz kodu yapıştırdım ama boş sayfa geldi.
sayfadaki kodum bu şekilde
$n11_conf = ['appKey' => $appKey, 'appSecret' => $appPass];
$n11Client = new n11Client($n11_conf);
$productList = $n11Client->GetProductList(5, 0);
//var_dump($productList);
$results= json_decode($productList ,true);
$products = $results['result']['products']['product'];
foreach($products as $product){
$product_id = $product['id'];
$title = $product['name'];
}
Hocam şu kod ile gelen json değerini diziye çevirebilirsiniz ayıklamanız daha kolay olur.
Bu şekilde de kullanabilirsiniz
$results= json_decode($productList ,true);
$products = $results['result']['products']['product'];
foreach($products as $product){
$product_id = $product['id'];
$title = $product['name'];
}