Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Write Multi-Line Strings in PHP

phpCopy<?php
$mystring1 = "This is the first line." . PHP_EOL;
$mystring2 = "This is the second line";
$mystring1 .= $mystring2;
echo($mystring1);
?>
Source by www.delftstack.com #
 
PREVIOUS NEXT
Tagged: #Write #Strings #PHP
ADD COMMENT
Topic
Name
6+8 =