Pergunta

Is this expression is safe or does this approach has vulnerabilities?

$pdo = new PDO('mysql:host=localhost;dbname=test', 'user', 'password');
$pdo->exec('SET time_zone = "' . date_default_timezone_get() . '"');

Nenhuma solução correta

Outras dicas

I would check first if date_default_timezone_get() returns a valid value, to avoid a query like: SET time_zone = "".

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top