PHP Classes

File: sets/README.txt

Recommend this page to a friend!
  Classes of Alex F. Bustos   SI Prefix Converter   sets/README.txt   Download  
File: sets/README.txt
Role: Documentation
Content type: text/plain
Description: Considerations about the Lists of prefixes
Class: SI Prefix Converter
Convert a number to a string appending a prefix
Author: By
Last change: Update of sets/README.txt
Date: 2 months ago
Size: 1,236 bytes
 

Contents

Class file image Download
This folder are intended to store the lists of prefixes (LOP). Each LOP should be a file in the form NAMEOFTHELIST.set.php and must contain only the declaration of the $sci_list array: $sci_list=array( 'exp_1'=>array('prefix_1'), 'exp_2'=>array('prefix_2'), ... , 'exp_i'=>array('prefix_i'), ... , 'exp_n'=>array('prefix_n') ); where the exp_i eth index should be an integer, and each sub-array of the $sci_list should be an array of the list of equivalent forms of the prefix (i.e., with html signs: µ,μ,μ, ...) See the LOP "si_short_html" to get a better example. The preferred/single prefix should starting the array, on the 0 index. Then, Avoid alphabetic/negative index if you only will use a single prefix. If you need to add a spacer between the number and the prefix (dash,space,...), specify it when creating a new object trough the constructor, not in the LOP. Never forget the exp 0 assigned with '', unless you don't need it (i.e.: when you want mass results in Kg). To get a better view, feel free to see the other files of this folder. All the files on this folder could have the 400 permissions or similar (440,444) And this folder could have the permission 500, or similar (550,555)