“Tulis string multi-line dalam php” Kode Jawaban

PHP Multiple Line String

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

Tulis string multi-line dalam 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);
?>
CodeGuruDev

Jawaban yang mirip dengan “Tulis string multi-line dalam php”

Pertanyaan yang mirip dengan “Tulis string multi-line dalam php”

Lebih banyak jawaban terkait untuk “Tulis string multi-line dalam php” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya