Skip to content

Instantly share code, notes, and snippets.

View beeryukov's full-sized avatar

Maxim beeryukov

View GitHub Profile
@beeryukov
beeryukov / heredoc.php
Created April 8, 2019 16:46
bug with heredoc
<div>
some html
</div>
<?php
$x = <<<TXT
bla bla
TXT;
?>
<?php
namespace src\Integration;
class DataProvider
{
private $host;
private $user;
private $password;
<?php
$a = "678234234";
$b = "789";
// выводим для проверки
echo $a + $b . "\n";
echo txtSum($a, $b) . "\n";