Created
June 4, 2012 17:04
-
-
Save cebe/2869558 to your computer and use it in GitHub Desktop.
php memory usage
This file contains hidden or 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 | |
| $old = memory_get_usage(); | |
| // code that allocates memory (create objects etc...) | |
| $mem = memory_get_usage(); | |
| Yii::trace('memory usage: '.(abs($mem - $old)/1024).' kb'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment