| [ Index ] |
PHP Cross Reference of MyBB 1.6.5 |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * MyBB 1.6 4 * Copyright 2010 MyBB Group, All Rights Reserved 5 * 6 * Website: http://mybb.com 7 * License: http://mybb.com/about/license 8 * 9 * $Id: functions_compat.php 5297 2010-12-28 22:01:14Z Tomm $ 10 */ 11 12 /** 13 * Below are compatibility functions which replicate functions in newer versions of PHP. 14 * 15 * This allows MyBB to continue working on older installations of PHP 5.1 and above without these functions. 16 */ 17 18 if(!function_exists('memory_get_peak_usage')) 19 { 20 function memory_get_peak_usage($real_usage=false) 21 { 22 return memory_get_usage($real_usage); 23 } 24 } 25 26 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Sun Dec 11 14:16:27 2011 | Cross-referenced by PHPXref 0.7.1 |