


How to use the PHP function sprintf() to format a string_PHP Tutorial
Syntax: string sprintf(string format, mixed [args]...);
Return value: String
Function type: Information Processing
The PHP function sprintf() is used to format strings. The parameter format is the format of the conversion, starting with the percent sign % and ending with the conversion character. The converted formats include
fill-in-the-blank characters in sequence. If 0, it means that the blanks are filled with 0; blanks are the default value, which means that the blanks are left alone.
Alignment. The default is right-aligned, with negative tables aligned left.
Field width. is the minimum width.
Accuracy. Refers to the number of floating point digits after the decimal point.
For the type of PHP function sprintf(), see the table below. % prints out the percent sign without conversion.
b Convert integer to binary.
c Convert integer to corresponding ASCII character.
d Convert integer to decimal.
F times precision numbers are converted to floating point numbers.
o Convert integer to octal.
s Convert integer to string.
x integer is converted to lower case hexadecimal.
X Convert integer to uppercase hexadecimal.
Usage example of PHP function sprintf()
<ol class="dp-xml"><li class="alt"><span><span class="tag"><?</span><span> </span></span></li><li><span>$</span><span class="attribute">money1</span><span> = </span><span class="attribute-value">68</span><span>.75; </span></li><li class="alt"><span>$</span><span class="attribute">money2</span><span> = </span><span class="attribute-value">54</span><span>.35; </span></li><li><span>$</span><span class="attribute">money</span><span> = $money1 + $money2; </span></li><li class="alt"><span>// 此时变量 $money 值为 "123.1"; </span></li><li><span>$</span><span class="attribute">formatted</span><span> = </span><span class="attribute-value">sprintf</span><span> ("%01.2f", $money); </span></li><li class="alt"><span>// 此时变量 $ formatted 值为 "123.10" </span></li><li><span class="tag">?></span><span> </span></span></li></ol>

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Validator can be created by adding the following two lines in the controller.
