


In PHP, there are four ways to output strings. The echo structure can output multiple values at one time; print() can only output one value; printf() can format the output; print_r() can output an array, which is very beneficial for debugging .
The following are introduced one by one.
1. echo
echo is a keyword in PHP, it has no return value. In terms of writing, it can omit the parentheses. The following code:
echo 'Test String'; echo('Test String');
2. print
print is also a keyword in PHP. It has a return value. It usually returns true, but there should be no return false. In terms of writing, it is the same as echo, and the parentheses can be omitted. The following code:
print 'Test String'; print('Test String');
3. printf
printf can format and output a string like printf in C language. Its format is similar to that of C language, both starting with %. Its specifier is defined below.
b The parameter is an integer and its binary number is displayed c The parameter is an integer and its corresponding ASCII character is displayed d The parameter is an integer and its decimal number is displayed
f The parameter is double precision and its decimal number is displayed It is a floating point number
e The parameter is double precision, displayed as scientific notation
g The parameter is double precision, displayed as floating point number or scientific notation
o The parameter is an integer, its octal number is displayed
s Parameters is a string, and is displayed as a string
u The parameter is an unsigned integer, and its decimal number is displayed
x/X The parameter is an integer, and its hexadecimal number is displayed (displayed in upper and lower case respectively)
% Output % It should be noted that:
f,e defaults to six digits after the decimal point. When g exceeds six digits (plus decimal point), it will be rounded. If the rounded value is less than 1000000, it will be output directly. If it is greater than 1000000, it will be displayed as scientific Counting type. When the value of f is greater than 1.2e23, the output result is incorrect.
Except for %, the total number of output digits can be specified (decimal point, E counts as one), 0 or a space can be specified as the complement character, and the complement character can also be specified on the left or right.
f, e can specify the number of digits after the decimal point.
For example, %5d means that the total number of output digits is 5, and the remaining digits are left filled with spaces; %05d means that the total number of output digits is 5, and the remaining digits are left filled with 0s; %05.1f means that the total number of output digits is 5, and the remaining digits are left filled with 0s. 1 digit after the decimal point; %-05.1f means that the total number of output digits is 5, any missing digits are padded to the right with 0, and 1 digit after the decimal point;
Sample code:
printf("%7.2f", 1.2); // " 1.20" printf("%-07.2f", 1.2); // "1.20000"
4.
sprintf sprintf and format conversion are the same as printf. The difference between the two is that printf outputs directly, while sprintf returns a formatted string.
5. print_r and var_dump
Both print_r and var_dump can output arrays and objects, but print_r's output of Boolean types is not obvious; var_dump's output is more detailed and is generally used during debugging. The following code:
$v = new test(); print_r($v); var_dump($v); class test { public $num = 1; public $str = "222"; public $bln = true;
The result is:
test Object ( [num] => 1 [str] => 222 [bool] => 1 ) object(test)#1 (3) { ["num"]=> int(1) ["str"]=> string(3) "222" ["bool"]=> bool(true) }
The above is the detailed content of Detailed explanation of the usage of php output string functions echo, print, printf, print_r and var_dump. For more information, please follow other related articles on the PHP Chinese website!

php将16进制字符串转为数字的方法:1、使用hexdec()函数,语法“hexdec(十六进制字符串)”;2、使用base_convert()函数,语法“bindec(十六进制字符串, 16, 10)”。

检测变量是否为字符串的方法:1、利用“%T”格式化标识,语法“fmt.Printf("variable count=%v is of type %T \n", count, count)”;2、利用reflect.TypeOf(),语法“reflect.TypeOf(变量)”;3、利用reflect.ValueOf().Kind()检测;4、使用类型断言,可以对类型进行分组。

在当今科技快速发展的时代,编程语言也如雨后春笋般涌现出来。其中一门备受瞩目的语言就是Go语言,它以其简洁、高效、并发安全等特性受到了许多开发者的喜爱。Go语言以其强大的生态系统而著称,其中有许多优秀的开源项目。本文将介绍五个精选的Go语言开源项目,带领读者一起探索Go语言开源项目的世界。KubernetesKubernetes是一个开源的容器编排引擎,用于自

《Go语言开发必备:5个热门框架推荐》Go语言作为一门快速、高效的编程语言,受到越来越多开发者的青睐。为了提高开发效率,优化代码结构,很多开发者选择使用框架来快速搭建应用。在Go语言的世界中,有许多优秀的框架可供选择。本文将介绍5个热门的Go语言框架,并提供具体的代码示例,帮助读者更好地理解和使用这些框架。1.GinGin是一个轻量级的Web框架,拥有快速

php字符串长度不一致的解决办法:1、通过mb_detect_encoding()函数查看字符串的编码方式;2、通过mb_strlen函数查看具体字符长度;3、使用正则表达式“preg_match_all('/[\x{4e00}-\x{9fff}]+/u', $str1, $matches);”剔除非中文字符即可。

删除方法:1、使用TrimSpace()函数去除字符串左右两边的空格,语法“strings.TrimSpace(str)”;2、使用Trim()函数去除字符串左右两边的空格,语法“strings.Trim(str, " ")”;3、使用Replace()函数去除字符串的全部空格,语法“strings.Replace(str, " ", "", -1)”。

转换方法:1、在转换变量前加上用括号括起来的目标类型“(bool)”或“(boolean)”;2、用boolval()函数,语法“boolval(字符串)”;3、用settype()函数,语法“settype(变量,"boolean")”。

php字符串部分乱码的解决办法:1、使用“mb_substr(strip_tags($str),0,-1,'UTF-8');”截取字符串;2、使用“iconv("UTF-8","GB2312//IGNORE",$data)”转换字符集即可。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
