PHP Classes

File: tests/decodeSize.php

Recommend this page to a friend!
  Classes of Ali YILMAZ   Mind Framework   tests/decodeSize.php   Download  
File: tests/decodeSize.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Mind Framework
Framework that implements several design patterns
Author: By
Last change:
Date: 1 year ago
Size: 469 bytes
 

Contents

Class file image Download
<?php

require_once '../src/Mind.php';

$Mind = new Mind();

   
// 1024
   
echo $Mind->decodeSize('1 KB');

echo
'<br>';

   
// 1048576
   
echo $Mind->decodeSize('1 MB');

echo
'<br>';

   
// 1073741824
   
echo $Mind->decodeSize('1 GB');

echo
'<br>';

   
// 1099511627776
   
echo $Mind->decodeSize('1 TB');

echo
'<br>';

   
// 1125899906842624
   
echo $Mind->decodeSize('1 PB');

echo
'<br>';

   
// 1152921504606846976
   
echo $Mind->decodeSize('1 EB');