Answers for "single line in 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
5

one line if statement php

echo ($var1 >= $var2) ? 'this is true' : 'this is false';
Posted by: Guest on April-19-2021

Browse Popular Code Answers by Language