Skip to content

Instantly share code, notes, and snippets.

@cebe
Created June 4, 2012 17:04
Show Gist options
  • Select an option

  • Save cebe/2869558 to your computer and use it in GitHub Desktop.

Select an option

Save cebe/2869558 to your computer and use it in GitHub Desktop.
php memory usage
<?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