code.progysm.com

echo

Type: instruction du langage

Description:
	Affiche à la sortie standard

Syntaxe:
	echo mixed $a, mixed $b, ..., mixed $n;

Paramètres:
	mixed $a... : un type primitif ou un objet qui peut être convertit en string.

Exemples:
	echo "a";         // affiche a
	echo "a","b";     // affiche ab
	echo "a"."b";     // affiche ab
	echo 1,"a",true;  // affiche 1a1