位置: 编程技术 - 正文
推荐整理分享PHP字符串函数fprintf()的用法(php字符串赋值),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:php 字符串函数,php 字符串函数,php字符串的三种定义方式,php字符串函数大全,php字符串的三种定义方式,php字符串函数大全,php字符串赋值,php 字符串函数,内容如对您有帮助,希望把文章链接给更多的朋友!
(PHP 5)
fprintf — 将格式化后的字符串写入到流
说明 int fprintf ( resource $handle , string $format [, mixed $args [, mixed $... ]] )写入一个根据 format 格式化后的字符串到 由 handle 句柄打开的流中。
参数handle
文件系统指针,是典型地由fopen() 创建的 resource(资源)。
format参见 sprintf() 中对 format 的描述。
args...
返回值
返回写入的字符串长度。
范例
Example #1 fprintf(): zero-padded integers
<?phpif(!($fp=fopen('date.txt','w'))){return;}fprintf($fp,"%d-%d-%d",$year,$month,$day);//willwritetheformattedISOdatetodate.txt?>Example #2 fprintf(): formatting currency
<?phpif(!($fp=fopen('currency.txt','w'))){return;}$money1=.;$money2=.;$money=$money1+$money2;//echo$moneywilloutput".1";$len=fprintf($fp,'%.2f',$money);//willwrite"."tocurrency.txtecho"wrote$lenbytestocurrency.txt";//usethereturnvalueoffprintftodeterminehowmanybyteswewrote?> 参见printf() - 输出格式化字符串 sprintf() - Return a formatted string sscanf() - 根据指定格式解析输入的字符 fscanf() - 从文件中格式化输入 vsprintf() - 返回格式化字符串 number_format() - 以千位分隔符方式格式化一个数字
PHP字符串函数crypt()的用法 crypt(PHP4,PHP5)crypt单向字符串散列说明stringcrypt(string$str[,string$salt])crypt()返回一个基于标准UNIXDES算法或系统上其他可用的替代算法的散列字符串。有些系
PHP字符串函数echo()的用法 echo(PHP4,PHP5)echo输出一个或多个字符串说明voidecho(string$arg1[,string$...])输出所有参数。echo不是一个函数(它是一个语言结构),因此你不一定要使用小括
PHP字符串函数count_chars()的用法 count_chars(PHP4,PHP5)count_chars返回字符串所用字符的信息说明mixedcount_chars(string$string[,int$mode=0])统计string中每个字节值(0..)出现的次数,使用多种模式返
标签: php字符串赋值
本文链接地址:https://www.jiuchutong.com/biancheng/279864.html 转载请保留说明!友情链接: 武汉网站建设