Search
 
SCRIPT & CODE EXAMPLE
 

PHP

php multiple line string

//use EOD function for multiple line variable
$variable=<<<EOD
  this is line1
  this is line2
  EOD;
Comment

multiline echo in php

<?php

$var = 'Howdy';

echo <<<EOL
This is output
And this is a new line
blah blah blah and this following $var will actually say Howdy as well

and now the output ends
EOL;
Comment

Write Multi-Line Strings in 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);
?>
Comment

Write Multi-Line Strings in PHP

phpCopy<?php
echo("This is the first line 

This is the third line");
?>
Comment

multiline string php

<?php
  $var_name=<<<MULTILINENAME
text
MULTILINENAME;
?>
Comment

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);
?>
Comment

Write Multi-Line Strings in PHP

phpCopy<?php
echo("This is the first line 
This is the second line");
?>
Comment

Write Multi-Line Strings in PHP

phpCopy<?php
echo("This is the first line 
This is the third line");
?>
Comment

PREVIOUS NEXT
Code Example
Php :: where is cache file in laravel 
Php :: What’s New in PHP 8 
Php :: Acf Repeater setting check 
Php :: php loop object keys 
Php :: php get constant value 
Php :: php page sends cookie to visitor 
Php :: pagination in api laravel 
Php :: how to create object in php 
Php :: laravel send data with a redirect 
Php :: iterator 
Php :: strip html tag php 
Php :: Merging Two Laravel Collections keeping the original keys 
Php :: laravel eloquent batch insert 
Php :: laravel dingo api response 
Php :: public_path lumen not defined 
Php :: restrict_manage_posts hook 
Php :: PHP Dependency Resolver 
Php :: WordPress Image/Files uploads 
Php :: laravel collection tap 
Php :: php file request 
Php :: how to get session variables from cookie string 
Php :: slideshow php 
Php :: form validation in php 
Php :: Header requirements for new plugin in wordpress 
Php :: shorthand to assign multiple variable to same value in php 
Php :: php mysql insert record if not exists in table 
Php :: How can apply_filters be used to create a filter hook in wordpress 
Php :: Error when uploading image into phpmyadmin using PDO in php 
Php :: php 8 jit does not work 
Php :: hou to fill value in input box using php 
ADD CONTENT
Topic
Content
Source link
Name
5+6 =