mysql and php: setting config variables on start - impact on server?

Posted by andufo on Stack Overflow See other posts from Stack Overflow or by andufo
Published on 2010-06-01T22:29:44Z Indexed on 2010/06/01 22:33 UTC
Read the original article Hit count: 170

Filed under:
|
|
date_default_timezone_set('America/Guayaquil');
$cnn->execute('SET NAMES utf8');
$cnn->execute('SET GLOBAL time_zone = "-5:00"');

Hi, the code above is run everytime someone enters the website im developing. Does someone know what the impact (in performance) of those commands is?

© Stack Overflow or respective owner

Related posts about php

Related posts about mysql