return n总额t$total4fn 已用t$total_usage4fn 剩余t $total - $total_usage n n$recent;上面这段PHP代码格式出错指出来
上面的PHP代码中的字符串连接操作符应该使用点号(.)而不是箭头(->)来连接字符串。正确的代码应该是:
return "\n总额:\t{$total:.4f}\n" .
"已用:\t{$total_usage:.4f}\n" .
"剩余:\t" . ($total - $total_usage) . "\n" .
"\n{$recent}";
原文地址: https://www.cveoy.top/t/topic/hUNT 著作权归作者所有。请勿转载和采集!