中山php|最優(yōu)網(wǎng)絡(luò) :中山做網(wǎng)站 中山php建站
最優(yōu)良人
Posts Tagged With: memory_get_usage
php計(jì)算代碼運(yùn)行時(shí)間和使用內(nèi)存
2012/11/14 at 16:28 » Comments (454)
<?php //開始計(jì)時(shí) $HeaderTime = microtime(true);//參數(shù)true表示返回浮點(diǎn)數(shù)值 //代碼 //... printf(" total run: %.2f s<br>". "memory usage: %.2f M<br> ", microtime(true)-$HeaderTime, memory_get_usage() / 1024 / 1024 ); ?> 結(jié)果: total runtime: 1.47 s memory usage: 77.09 M more »