PHP的C#字符串格式函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP的C#字符串格式函数相关的知识,希望对你有一定的参考价值。

  1. <?php
  2.  
  3. function Format($str){
  4. //count arguments that our function received
  5. $count_args=func_num_args();
  6. //check if we have sufficient arguments
  7. if($count_args==1){return $str;}
  8.  
  9. for($i=0;$i<$count_args-1;$i++){
  10. //get the argument value
  11. $arg_value=func_get_arg($i+1);
  12. //replace {$i} with the value of specific argument position
  13. $str=str_replace("{{$i}}",$arg_value,$str);
  14. }
  15.  
  16. return $str;
  17. }

以上是关于PHP的C#字符串格式函数的主要内容,如果未能解决你的问题,请参考以下文章

PHP PHP的C#字符串格式函数

PHP中常用的字符串格式化函数总结

php获取字符串的编码格式的方法(函数)

需要帮助将字符串从 c++ 转换为 c# 格式

C#格式化字符串

PHP 格式化字符串sprintf()