Ejemplo 1: cadena de varias líneas php
//use EOD function for multiple line variable
$variable=<<<EOD
this is line1
this is line2
EOD;
Ejemplo 2: escribir cadenas de varias líneas en PHP
phpCopy<?php
$mystring1 = "This is the first line." . PHP_EOL;
$mystring2 = "This is the second line" . PHP_EOL;
$mystring3 = "This is the third line" . PHP_EOL;
$mystring4 = "This is the fourth line" . PHP_EOL;
$mystring5 = "This is the fifth line";
$mystring1 .= $mystring2 .= $mystring3 .= $mystring4 .= $mystring5;
echo($mystring1);
?>
Ejemplo 3: escribir cadenas de varias líneas en PHP
phpCopy<?php
$mystring1 = "This is the first line." . PHP_EOL;
$mystring2 = "This is the second line";
$mystring1 .= $mystring2;
echo($mystring1);
?>
Ejemplo 4: escribir cadenas de varias líneas en PHP
phpCopy<?php
echo("This is the first line rnThis is the third line");
?>
Ejemplo 5: escribir cadenas de varias líneas en PHP
phpCopy<?php
echo("This is the first line nThis is the second line");
?>
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)