PHP Twitter 关注者 - 如果出错则使用默认值

发布于 2024-11-19 14:41:02 字数 458 浏览 0 评论 0原文

我正在使用 PHP 代码片段来显示我的 Twitter 关注者数量:

<?php    
$screenName = 'photogenixlincs';
$getData = 'followers_count';
$xml = file_get_contents('http://twitter.com/users/show.xml?screen_name=' . $screenName);
if(preg_match('/' . $getData . '>(.*)</', $xml, $match) !=0)
echo $match[1];
?>

我们都知道 Twitter 可能有点狡猾,有时 PHP 代码会显示在页面上 - 与 3 位数的 Twitter 关注者相比,这简直是一场噩梦。有没有办法包含一个失败事件来阻止 PHP 被写入或仅包含一个默认的 n/a 例如,如果它因任何原因无法正确加载?

I'm using a PHP snippet to display my volume of Twitter followers:

<?php    
$screenName = 'photogenixlincs';
$getData = 'followers_count';
$xml = file_get_contents('http://twitter.com/users/show.xml?screen_name=' . $screenName);
if(preg_match('/' . $getData . '>(.*)</', $xml, $match) !=0)
echo $match[1];
?>

We all know that Twitter can be a bit dodgy and sometimes the PHP code displays on the page - which compared to 3 digit Twitter followers is a nightmare. Is there any way to include a failure event to either prevent the PHP being written or just include a default n/a for example if it fails to load correctly for any reason?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文