PHP Twitter 关注者 - 如果出错则使用默认值
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://php.net/manual/en/language.exceptions.php
抛出异常并使用try catch。
http://php.net/manual/en/language.exceptions.php
Throw an exception and use try catch.