Closed nikic closed 8 years ago
@nikic Please, can you provide an example of a nowdoc srings with b
or B
?
@Hywan Something like this?
<?php
$str = b<<<EOD
hello\r\n
EOD;
var_dump($str);
Fixed in #47. Waiting for the CI before the merge.
:+1:
Single quoted string current only handle
b
, but notB
: https://github.com/tagua-vm/parser/blob/master/source/rules/literals.rs#L217Additionally, b/B is not handled for nowdoc strings, which also support it.