Answers for "string on multiple lines php"

PHP
7

php multiple line string

//use EOD function for multiple line variable
$variable=<<<EOD
  this is line1
  this is line2
  EOD;
Posted by: Guest on June-09-2020
0

PHP echo multiple lines example

<?php
	$var1="We". PHP_EOL;
	$var2="Welcome". PHP_EOL;
	$var3="You". PHP_EOL;
	$var4="On". PHP_EOL;
	$var5="Our". PHP_EOL;
	$var6="Softhunt". PHP_EOL;
	$var7="Website";
	$var1.=$var2.=$var3.=$var4.=$var5.=$var6.=$var7;//concatenating the string into $var1
	echo $var1 //printing concatenated string
?>
Posted by: Guest on December-29-2021

Code answers related to "string on multiple lines php"

Browse Popular Code Answers by Language