PHP的C#字符串格式函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP的C#字符串格式函数相关的知识,希望对你有一定的参考价值。
<?php function Format($str){ //count arguments that our function received //check if we have sufficient arguments if($count_args==1){return $str;} for($i=0;$i<$count_args-1;$i++){ //get the argument value //replace {$i} with the value of specific argument position } return $str; }
以上是关于PHP的C#字符串格式函数的主要内容,如果未能解决你的问题,请参考以下文章