HI Guys我试图在php上创建一个简单的应用程序以显示最近的5个twitts但是当我用关键字搜索时它没有显示任何内容如果我把代码显示输出而没有搜索它通过使用print_r()函数工作但它不适用于echo命令我不知道什么是真正的问题。请帮帮我
<?php include "library/twitteroauth.php";?>
<?php
$consumer="CONSUMER";
$consumersecret="CONSUMERSECRET";
$accesstoken="ACCESSTOKEN";
$sccesstokensecret="ACCESSTOKENSECRET";
$twitter= new TwitterOAuth($consumer,$consumersecret,$accesstoken,$sccesstokensecret);
?>
<html>
<head>
<meta charset="UTF-8"/>
<title>Twitter </title>
</head>
<body>
<form action="" method="">
<label >Serach<input type="text" name="keyword"/></label>
</form>
<?php
if(isset($_POST['keyword'])){
$tweets=$twitter->get('https://api.twitter.com/1.1/search/tweets.json?
q='.$_POST['keyword'].'&result_type=recent&count=5');
foreach($tweets as $tweet){
foreach($tweet as $t){
echo $t->text;
}
}
}
?>