PHP sprintf() 函数的应用(定义和用法)

 2025-01-16  阅读 403  评论 8  点赞 226

摘要:语法sprintf(format,arg1,arg2,arg++) ? 输出: hello world. day number 123 例子 2 复制代码 代码如下:   输出: 123.000000 例子 3 复制代码 代码如下: 输出: 复制代码 代码如下: with 2 decimals: 123.00 with no decimals: 123 例子4 复制代码 代码如下: 输出: 复制代
语法
sprintf(format,arg1,arg2,arg++)

?
<?php
$str = "hello";
$number = 123;
$txt = sprintf("%s world. day number %u",$str,$number);
echo $txt;
?>

输出:

hello world. day number 123

例子 2
复制代码 代码如下:

<?php
$number = 123;
$txt = sprintf("%f",$number);
echo $txt;
?>
 

输出:

123.000000

例子 3
复制代码 代码如下:

<?php
$number = 123;
$txt = sprintf("with 2 decimals: %1\$.2f<br />with no decimals: %1\$u",$number);
echo $txt;
?>

输出:
复制代码 代码如下:

with 2 decimals: 123.00
with no decimals: 123

例子4
复制代码 代码如下:

<?php
$ctype_primary = strtolower('application');
$ctype_secondary = strtolower('pdf');
$mimetype = sprintf('%s/%s', $ctype_primary, $ctype_secondary);
echo $mimetype;
?>

输出:
复制代码 代码如下:

application/pdf


标签:phpphp教程

评论列表:

  •   henbucuo
     发布于 3天前回复该评论
  • 写的很不错,学到了!
显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0274秒, 内存占用1.94 MB, 访问数据库30次

冀ICP备19034377号