I wonder if a variable in php
can start with underline
, for example: $_1teste;
I wonder if a variable in php
can start with underline
, for example: $_1teste;
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
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!
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';