【问题】
折腾:
期间,需要搞懂,如何实现PHP的sprintf,把字符串格式化获得处理后的字符串。
以便于处理:
https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET
这种url。
注:
之前是已经知道了,对于普通的字符串,是可以通过点’.’去连接的,比如:
$output ='Here is the result: '.$result.' for this date '.$date;
【折腾过程】
1.搜:
php string sprintf
参考:
【总结】
PHP中有sprintf函数,和其他语言的基本没区别。
常用参数是:
Type | Specifiers |
string | s |
integer | d, u, c, o, x, X, b |
double | g, G, e, E, f, F |
然后正常使用即可。
转载请注明:在路上 » 【已解决】PHP中如何实现sprinf