Search w3schools.com:

SHARE THIS PAGE

PHP print() Function

PHP String Reference Complete PHP String Reference

Example

Write some text to the output:

<?php
print "Hello world!";
?>

Run example »

Definition and Usage

The print() function outputs one or more strings.

Note: The print() function is not actually a function, so you are not required to use parentheses with it.

Tip: The print() function is slightly slower than echo().


Syntax

print(strings)

Parameter Description
strings Required. One or more strings to be sent to the output

Technical Details

Return Value: Always returns 1
PHP Version: 4+


More Examples

Example 1

Write the value of the string variable ($str) to the output:

<?php
$str = "Hello world!";
print $str;
?>

Run example »

Example 2

Write the value of the string variable ($str) to the output, including HTML tags:

<?php
$str = "Hello world!";
print $str;
print "<br>What a nice day!";
?>

Run example »

Example 3

Join two string variables together:

<?php
$str1="Hello world!";
$str2="What a nice day!";
print $str1 . " " . $str2;
?> 

Run example »

Example 4

Write the value of an array to the output:

<?php
$age=array("Peter"=>"35");
print "Peter is " . $age['Peter'] . " years old.";
?>

Run example »

Example 5

Write some text to the output:

<?php
print "This text
spans multiple
lines.";
?> 

Run example »

Example 6

Difference of single and double quotes. Single quotes will print the variable name, not the value:

<?php
$color = "red";
print "Roses are $color";
print "<br>";
print 'Roses are $color';
?>

Run example »


PHP String Reference Complete PHP String Reference

W3Schools Certification

W3Schools' Online Certification

The perfect solution for professionals who need to balance work, family, and career building.

More than 10 000 certificates already issued!

Get Your Certificate »

The HTML Certificate documents your knowledge of HTML.

The HTML5 Certificate documents your knowledge of advanced HTML5.

The CSS Certificate documents your knowledge of advanced CSS.

The JavaScript Certificate documents your knowledge of JavaScript and HTML DOM.

The jQuery Certificate documents your knowledge of jQuery.

The XML Certificate documents your knowledge of XML, XML DOM and XSLT.

The ASP Certificate documents your knowledge of ASP, SQL, and ADO.

The PHP Certificate documents your knowledge of PHP and SQL (MySQL).

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]