Advertisement
zero50x

Ошибки, кодировка, время

Jun 7th, 2014
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. error_reporting(E_ALL | E_STRICT);
  2. ini_set('display_errors', TRUE);
  3. ini_set('display_startup_errors', TRUE);
  4.  
  5.  
  6. header('Content-type: text/html; charset=UTF-8');
  7.  
  8. echo '<pre>';
  9. var_dump();
  10. echo '</pre>';
  11.  
  12. $t1 = microtime(true);
  13. $t2 = microtime(true);
  14. $t3=$t2-$t1; echo 'Время '.$t3;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement