Home
PHP
Chart
Class
Components
Cookie Session
Data Structure
Data Type
Date
Design Patterns
Development
DNS
Email
File Directory
Form
Functions
Graphics Image
HTML
Language Basics
Login Authentication
Math
MySQL Database
Network
Operator
PDF
Reflection
Statement
String
Utility Function
Web Services SOAP WSDL
XML
Formatting of Numeric Data : echo « Utility Function « PHP
PHP
Utility Function
echo
Formatting of Numeric Data
<?php $i = 123; $f = 12.567; echo
"\$i = $i and \$f = $f\n"
; ?>
Related examples in the same category
1.
A Simple "Hello World" Script
2.
Add lines and spaces to textarea
3.
Correct escaping of special characters
4.
Key-value array elements
5.
Echo out html tags
6.
Enclosure html into a string and echo out
7.
echo versus print
8.
how arrays embedded in strings will be converted.
9.
echo is more useful because you can pass it several parameters
10.
embedded variables are handled when the string is created with single or double quotes.