Я хочу знать, как я могу получить значение из этого print_r, показанного ниже

Вот результат

print_r($response->Items->Item->EditorialReviews->EditorialReview)

  Array ( [0] => stdClass Object ( [Source] => Product Description [Content] => Acer AO725-0899 [IsLinkSuppressed] => ) [1] => stdClass Object ( [Source] => Amazon.com Product Description [Content] => Perfect portability, perfect usability: The Aspire® One AO725 N 

Я хочу получить значение от 0 до Контента или 1 к Контенту, Как я могу получить это?

Просто следуйте цепочке:

 $response->Items->Item->EditorialReviews->EditorialReview[0]->Content $response->Items->Item->EditorialReviews->EditorialReview[1]->Content 

Общее правило для поиска данных, которые вы хотите получить из дампа, например:

  1. Anything Array( [x] => ... означает, что вы добавили [0] к своей переменной.

  2. Anything Object( [x] => ... означает, что вы добавляете ->x в свою переменную.

 $response->Items->Item->EditorialReviews->EditorialReview[0]->Content 

Звучит достаточно просто:

 echo $response->Items->Item->EditorialReviews->EditorialReview[0]->Content; 

Чтобы пройти через все из них:

 foreach($response->Items->Item->EditorialReviews->EditorialReview as $review) echo $review->Content; 

попробуй это:

 echo $response->Items->Item->EditorialReviews->EditorialReview[0]->Content; //for 0 contect echo $response->Items->Item->EditorialReviews->EditorialReview[1]->Content; //for 1 content 

$response->Items->Item->EditorialReviews->EditorialReview – это массив. Используйте индекс, из которого u хотите получить значение, подобное …

массив [индекс];

если использование объекта …. -> ваше значение