Changeset 59 for branches/mvc/Application/CustomOutput.php
- Timestamp:
- Mar 1, 2015, 12:43:56 PM (10 years ago)
- Location:
- branches/mvc
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/mvc/Application/CustomOutput.php
r47 r59 35 35 $Tag->SubElements[] = $ExecutionTimeTag; 36 36 $UsedMemoryTag = new XMLTag('li'); 37 $UsedMemoryTag->SubElements = 'Použitá paměť: '.$this->System->AddPrefixMultipliers(memory_get_peak_usage(FALSE), 'B').' / '.ini_get('memory_limit').'B'; 37 $PrefixMultiplier = new PrefixMultiplier(); 38 $UsedMemoryTag->SubElements = 'Použitá paměť: '.$PrefixMultiplier->Add(memory_get_peak_usage(FALSE), 'B').' / '.ini_get('memory_limit').'B'; 38 39 $Tag->SubElements[] = $UsedMemoryTag; 39 40 }
Note:
See TracChangeset
for help on using the changeset viewer.