-4
For example:
<?php
$linha = __LINE__;
echo "a linha atual é $linha <br>";
//deveria retornar "a linha atual é 4"
echo "a linha atual é $linha <br>";
//deveria retornar "a linha atual é 7"
?>
but in all rows I use the $line variable returns 2. How to return the line the variable is in?
echo "a linha atual é ".__LINE__." <br>";
– Roberto de Campos
What is the purpose of storing the line number? the comment above solves the problem at first.
– rray
I need to pick up an error code, and this code will be the line
– Gustavo Henrique