Posts by Vinicius Silva • 1 point
1 post
-
0
votes4
answers6032
viewsA: line break inside the string
You’ve tested it like this: <?php $str = "Vou para Manaus"; echo(strlen($str)); //exibe 15 $str = "Vou para" . PHP_EOL . "Manaus"; echo(strlen($str)); //exibe 18 ?> A line break PHP constant…
phpanswered Vinicius Silva 1