Differences between echo, print, printf and sprintf
Source: Internet
Author: User
Difference between echo, print, printf and sprintf-echo
It is a command and cannot return values. Echo can be followed by multiple parameters separated by semicolons, for example:
Echo $ myvar1;
Echo 1, 2, $ myvar, "bold ";
-Print
Yes. one value can be returned and only one parameter is allowed.
-Printf
Function to format and output the text, for example:
$ Name = "hunte ";
$ Age = 25;
Printf ("my name is % s, age % d", $ name, $ age );
-Sprintf
Similar to printf, but not printed, the formatted text is returned. Others are the same as printf.
-Echo
It is a command and cannot return values. Echo can be followed by multiple parameters separated by semicolons, for example:
Echo $ myvar1;
Echo 1, 2, $ myvar, "bold ";
-Print
Yes. one value can be returned and only one parameter is allowed.
-Printf
Function to format and output the text, for example:
$ Name = "hunte ";
$ Age = 25;
Printf ("my name is % s, age % d", $ name, $ age );
-Sprintf
Similar to printf, but not printed, the formatted text is returned. Others are the same as printf.
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.