Answers for "separate in php after 2 end lines"

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 split large text on line breaks into array

#1
$arr=explode("\n",$text);

#2
$arr=explode("<br>",nl2br($text));
Posted by: Guest on April-21-2021

Code answers related to "separate in php after 2 end lines"

Browse Popular Code Answers by Language