PHP 我有更多的追随者而不是耶稣吗?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 我有更多的追随者而不是耶稣吗?相关的知识,希望对你有一定的参考价值。

<?php

if(isset($_GET['username'])) {

//	Retrieve the follower count
$xml = file_get_contents('http://api.twitter.com/1/users/show.xml?screen_name=' . $_GET['username']);

//	If the followers' count is not zero
if (preg_match('/followers_count>(.*)</', $xml, $match) != 0) {
	//	Your followers, minus Jesus'.
	$count = $match[1] - 12;

	//	If we've got more than 12.
	if($match[1] > 12) {
		echo 'Nice one, ' . $_GET['username'] . '! You have ' . $count . ' more followers than Jesus!';
	} else {
		echo 'Jesus has more followers than me.';
	}
}


} else {
?>

<form method="get" action="<?php echo $_SERVER['HTTP_REFERRER']; ?>">
	<input id="username" name="username" type="text" value="What's your Twitter username?" />
	<input type="submit" value="Let's rock!" />
</form>
<?php

}


?>

以上是关于PHP 我有更多的追随者而不是耶稣吗?的主要内容,如果未能解决你的问题,请参考以下文章

生命的见证

当我点击索引页面而不是错误消息时,我只是得到一个空白页面。PHP

耶伦不是耶稣,压力测试不过是一场信心游戏

收藏这篇两万字总结,❤️Docker❤️这一块保证你拿捏的死死的,我说的,耶稣都不行

在 php 中更改输出的 mime 类型

NodeJS+MySQL 而不是 PHP+MySQL。可以吗?