Sprintf function usage in php

Source: Internet
Author: User
Previously, I heard from my teacher that the sprintf () function must use the echo method to display the formatted string and output. let's take a look at the simple method. Sprintf is used to format the string. this write method is directly connected with a string connector.

Previously, I heard from my teacher that the sprintf () function must use the echo method to display the formatted string and output. next I will take a look at the simple method.

I am reading some documents and always see the following code when reading books:

The instance code is as follows:

  1. $ Query = sprintf ('Insert INTO % sUSER (USERNAME, PASSWORD ,'.
  2. 'Email _ ADDR, IS_ACTIVE, PERMISSION) VALUES ("% s", % d, % d )',
  3. DB_TBL_PREFIX,
  4. Mysql_real_escape_string ($ this-> username, $ GLOBALS ['DB']),
  5. Mysql_real_escape_string ($ this-> password, $ GLOBALS ['DB']),
  6. Mysql_real_escape_string ($ this-> emailAddr, $ GLOBALS ['DB']),
  7. $ This-> isActive,
  8. $ This-> permission );

Sprintf is used to format the string. Is there any difference between this writing method and the writing method connected directly with a string connector? or is this more rigorous?

The syntax format of the printf () and sprintf () functions is:

Int printf (string $ format [, mixed $ arg1 [, mixed args2. ..]) string sprintf (string $ format [, mixed $ arg1 [, mixed args2. ..])

In a small example, the instance code is as follows:

  1. Differences between echo, print, printf, and sprintf in PHP
  2. $ Str = 'Let/'s study php! '';
  3. Echo $ str ."
    ";
  4. $ Number = print $ str ."
    ";
  5. Echo $ number ."
    ";
  6. $ Format = "% B % c % d ";
  7. $ Number1 = printf ($ format, 88,88, 88 );
  8. Echo"
    ". $ Number1;
  9. Echo"
    ". Sprintf ($ format, 88,88, 88 );
  10. ?>

Introduction to echo, print, printf, and sprintf

The returned value in print output mode is int type, and the returned value is always 1. the syntax format of print is as follows:

Int print (string $ str)

The echo output method does not return values. the syntax format of echo is as follows:

Void echo (string $ str [, string $ str1. ..])

In PHP, echo and print can be used in general cases, but in some cases, the two methods are also different, as shown in:

1) echo supports multiple parameters, but print only supports one parameter. 2) echo returns void, and print returns 1 forever.

Contact Us

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.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.