PHP - printf 函数



语法

int printf ( string $format [, mixed $args [, mixed $... ]] )

定义和用法

它返回格式化的字符串输出

返回值

它返回输出字符串的长度。

参数

序号 参数及说明
1

format

它包含字符串格式的信息

示例

尝试以下示例

<?php
   printf("Tutorials point simply easy learning");
?>

这将产生以下结果 -

Tutorials point simply easy learning
php_function_reference.htm
广告