I’ve tried that, as well. I’ve tried removing it and just searching for a string.
Nothing seems to work! 
Here is the code I’m using:
<?php
require_once("twitteroauth/twitteroauth.php");
$twitteruser = "kvsc881fm";
$numtweets = 5;
$consumerkey = "X";
$consumersecret = "X";
$accesstoken = "X";
$accesstokensecret = "X";
$connection = new TwitterOAuth($consumerkey, $consumersecret, $accesstoken, $accesstokensecret);
#$tweets = $connection->get("https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=".$twitteruser."&count=".$numtweets);
$tweets = $connection->get("https://api.twitter.com/1.1/search/tweets.json?q=%23kvscrequest");
foreach($tweets as $tweet) {
echo "
".$tweet->text."
";
}
?>
The line that is remarked out, works fine. The line that follows, does not. I’m thoroughly confused!