Variable in PHP can start with underline?

0

I wonder if a variable in php can start with underline , for example: $_1teste;

    
asked by anonymous 27.09.2016 / 16:32

3 answers

2

Yes. Yes you can!

According to the official PHP documentation on variables :

  

"A valid variable name starts with a letter or underline"

Examples:

$4site = 'not yet';     // inválido; começa com um número
$_4site = 'not yet';    // válido; começa com um sublinhado
$täyte = 'mansikka';    // válido; 'ä' é um caracter ASCII (extendido) 228
    
27.09.2016 / 16:35
0

Yes, variables can start with a letter or underline.

For example:

// Variaveis validas;
$_variavel = 'valor';
$_2variavel = 'valor';
$_1234_vel = 'valor';

// Variaveis não validas;
$+variavel = 'valor';
$-2variavel = 'valor';
$?1234_vel = 'valor';

See you soon!

    
27.09.2016 / 16:52
0

Yes, in php these are the rules.

See official PHP documentation on variables :

  

"A valid variable name starts with a letter or underline"

Examples:

  // Variaveis validas;
   $_variavel = 'valor';
   $_2variavel = 'valor';
   $_1234_vel = 'valor';

    // Variaveis não validas;
    $+variavel = 'valor';
    $-2variavel = 'valor';
    $?1234_vel = 'valor';

See also this link

    
27.09.2016 / 17:00