Answers for "php nowdoc"

PHP
5

php heredoc

$output = <<<HTML
	<p>Lorem ipsum dolor sit amet consectetur<p>
	<a href="{$foobar}">click here</a>
HTML;
Posted by: Guest on March-13-2020
2

php now

// In my case I want to print to log my zone time (Rome GMT +2)
// without changing the default timezone
// Add +2 hours respect to php time
$new_time = date("Y-m-d H:i:s", strtotime('+2 hours'));
Posted by: Guest on May-20-2021
1

heredoc php

$str = <<<MYTEXT
This is a
demo message
with heredoc.
MYTEXT;
 
echo $str;
Posted by: Guest on December-17-2020

Browse Popular Code Answers by Language