PHP - YQL ile belirli bir girdiyi seçip

0 Cevap php

bu yüzden YQL youtube kullanıcının abone sayısını almak için kullanıyorum.

Ben bu gibi bir URL kullanarak bir sorgu yapıyorum bunu yapmak için:

$query = 'https://query.yahooapis.com/v1/public/yql?q='.urlencode("SELECT * FROM xml WHERE url='http://gdata.youtube.com/feeds/api/users/{$id}'").'&format=json&callback=';

sonra yanıt çözmek ve bu gibi arıyorum dizi girdisini bulun:

  $response = json_decode($response, true);
  $subscriber_count = $response['query']['results']['entry']['statistics']['subscriberCount'];

it works fine, except I don't like the way I'm doing this :) I mean, is there a way I can get the subscriberCount value directly from the $query URL above? I don't need the entire XML, just that one entry.

0 Cevap