我正在使用clickatell API
开发一个SMS应用程序我想在我的页面上显示余额。
显示贷方余额的http请求是:
http://api.clickatell.com/http/getbalance?api_id=xxx&user=xxx&password=xxx
此页面返回“Credit:158.500”
是否可以使用PHP在我的应用程序/网页上显示它?
我看了一遍,一无所知,
非常感谢提前
答案 0 :(得分:1)
尝试这样的事情:
$credit = file_get_contents('http://api.clickatell.com/http/getbalance?api_id=xxx&user=xxx&password=xxx');
PHP的file_get_contents
函数将检索远程数据。然后,您可以在页面的任何位置echo
$credit
变量的内容。