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

Posted

tags:

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

<?php

function Format($str){
	//count arguments that our function received
	$count_args=func_num_args();
	//check if we have sufficient arguments
	if($count_args==1){return $str;}

	for($i=0;$i<$count_args-1;$i++){
  		//get the argument value
  		$arg_value=func_get_arg($i+1);
  		//replace {$i} with the value of specific argument position
  		$str=str_replace("{{$i}}",$arg_value,$str);
	}

	return $str;
}

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

PHP的C#字符串格式函数

PHP函数获取日期格式?

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

php PHP函数用连字符格式化信用卡号并应用屏蔽

php的%s

php中date() 函数