Created
April 18, 2017 13:00
-
-
Save pavlo-bondarchuk/b501aeab885c8026e5a63aa24c0ef131 to your computer and use it in GitHub Desktop.
Как проверить текущую нагрузку на сайте. Код выведет потребление PHP-памяти, количество SQL-запросов к базе данных и время генерации страницы WordPress.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
echo '<div style="text-align: center">WordPress: ' | |
. round(memory_get_usage()/1024/1024, 2) . 'MB ' | |
.' | MySQL:' . get_num_queries() . ' | '; | |
timer_stop(1); | |
echo 'sec</div>'; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment