是否可以使用 youtube API 反转 orderby 结果?
回复:http://code.google.com/apis/youtube/2.0 /developers_guide_php.html#Searching_for_Videos
我使用 orderby
或 Zend gdata API 的调用方式setOrderBy
获取按观看次数排名的结果。它们按降序返回,我需要升序。可能的?
re: http://code.google.com/apis/youtube/2.0/developers_guide_php.html#Searching_for_Videos
Im using the orderby
or as the Zend gdata API calles it setOrderBy
to get results ranked by viewcount. they are returned in Descending order and I need Ascending. Possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我知道我有点晚了,但我也遇到了同样的问题。我的方法(如果我发现 API 没有提供此功能)是使用“start-index”简单地请求最后一部分。这有点烦人,但有可能。
I know i'm kinda late, but I'm having the same issue. My approach (if I find out that the API is not offering this) is to simply request the last part by using 'start-index'. it's a little bit annoying, but possible.
如果您可以将结果放入数组中,则可以通过调用 array_reverse() 反转顺序。
If you can get the results into an array, you can then reverse the order by calling array_reverse().