我正在使用Zend Framework 2并成功使用他们的ZendService/Twitter/Twitter.php
类。我可以使用此服务搜索推文,主题标签等。
是否可以使用此课程在Twitter上获取最新趋势?我看到Twitter API提供trends/place
,但ZF2似乎没有提供访问任何trends/place
信息的功能。
Twitter.php
中的有效方法类型列为:
protected $methodTypes = array(
'account',
'application',
'blocks',
'directmessages',
'favorites',
'friendships',
'search',
'statuses',
'users',
);
trends
不是有效的方法类型之一。这是否意味着使用此服务无法检索trends
?
答案 0 :(得分:0)
经过一天的研究,我不相信ZF2的Twitter服务能够从Twitter检索surf
提要。
因此我使用J7mbo/twitter-api-php中的TwitterAPIExchange类(我不隶属于此项目)。使用此课程,我成功地能够检索% Do contours from k = 0 to k = 100 in steps of 1 unit.
for k = 0:100
% Find the value where: k - x^2 - y^2 = 0
a = sqrt(k);
% Domain for x and y.
x = linspace(-a,a);
y = linspace(-a,a);
[x,y] = meshgrid(x, y);
% Isolate z in terms of k, x and y.
z = sqrt(k-x.^2-y.^2);
% Find complex entries in z.
i = find(real(z)~=z);
% Replace complex entries with NaN.
z(i) = NaN;
% Draw upper hemisphere of surface.
surf(x,y,z,'FaceColor','red','EdgeColor','none');
hold on;
% Draw lower hemisphere of surface.
surf(x,y,-z,'FaceColor','red','EdgeColor','none');
% Adjust figure properties.
title(sprintf('Contours of f(x,y,z) = x^2 + y^2 + z^2\nwith f(x,y,z) = k = %d',k));
xlabel('x-axis');
ylabel('y-axis');
zlabel('z-axis');
axis equal;
grid on;
box on;
axis([-10 10 -10 10 -10 10]);
camlight left;
lighting phong;
% Update figure.
drawnow;
hold off;
end
Feed。