我正在关注本教程http://www.jek2k.com/wp/2008/02/08/building-a-custom-skype-me-button-with-status-icon/在我的网站上获取透明的 Skype 按钮所以人们可以通过点击一个按钮给我打电话。Skype 有自己的但是背景是白色的,http://www.skype.com/intl/en-us/tell-a-friend/get-a-skype-button/
我的代码是:
<?php
function getSkypeStatus($username) {
/*
returns:
0 - unknown
1 - offline
2 - online
3 - away
4 - not available
5 - do not disturb
6 - invisible
7 - skype me
*/
$remote_status = fopen ('http://mystatus.skype.com/'.$username.'.num', 'r');
if (!$remote_status) {
return '0';
exit;
}
while (!feof ($remote_status)) {
$value = fgets ($remote_status, 1024);
return trim($value);
}
fclose($remote_status);
}
function getSkypeStatusIcon($username) {
$status = getSkypeStatus($username);
// change the path of the icons folder to match your site
echo '<img src="/skype/'.$status.'.png" alt="call '.$username.'" />';
}
// retrieves the numeric status code
//getSkypeStatus('nicolovolpato');
// displays the status icon, change to match your Skype username
getSkypeStatusIcon('myusernamehere');
?>
当我在我的网站上进行测试时,它就会出现:'call myusernamehere'。没有图像,我无法单击此处呼叫 myusername 以打开 Skype 和呼叫。
我已将图像 0-7 插入到我的根文件夹中名为 skype 的文件夹中。
谁能帮忙