Go Back   CodingForums.com > :: Server side development > PHP > Post a PHP snippet

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rating: Thread Rating: 2 votes, 4.00 average.
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 05-29-2010, 06:04 AM   PM User | #1
is_set
New to the CF scene

 
Join Date: May 2010
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
is_set is an unknown quantity at this point
[tutorial]How To convert units of measurement from one unit or system to another

Today i will learn you new way to convert units of measurement from one unit or system to another and we will use simple php class
first you should download it:Length Class or download the class source code:
now how we can use it?
For example, we can define the relationship between any unit of length by the number of that length per one meter.
PHP Code:
1 m 100 cm 
With this ratio – which we can simply write as 100 – we can easily convert from meters to the new units. We can also convert from the unit cm back to meters by inverting the ratio – 1 / 100.The length class makes use of this simple principal. A data file (length.xml) contains information about each unit of measurement – an abbreviation, a full name, and this ratio. When the ‘length’ is constructed, it converts it from the given unit into the SI unit for length – meters.
You can then easily retrieve this length value in any other defined unit type.
Example Use

If you download the source code, it comes with a file “convert.php.” This isn’t part of the class – it just gives you an example of how to implement the class. Here’s a very simple example to show you the syntax for creating a new length instance and converting a value starting in centimeters to inches.
PHP Code:
$len = new length(50'cm');
echo 
$len->getConversion('in') . 'in'
The length constructor takes three arguments – one required and two optional. The first argument is the value of your length (50 in this case). The second parameter is the abbreviation of the unit type (cm). If a unit is not sent, then it is assumed you’re creating a length in meters. The last argument is the path/filename to the “length.xml” data file. It’s assumed to be located in “length.xml” if a path isn’t given.
The constructor then converts that value into the standard unit – meters. getConversion() takes one argument – the new unit type. It takes the stored value (in meters) and returns it converted to the unit type you gave.Extending Length to Include Other UnitsThe data file included with the class is by no means intended to be exhaustive. In fact, it’s pretty limited at the moment. I will probably eventually update it with a more or less complete list of units.
However, it was created to be easily adaptable by the user. You could even make up new imaginary units (for use in a game, maybe). All you need to do is add a new entry to the xml data file with this format.
Code:
<unit>
	<abbrev>cm</abbrev>
	<ratio>100</ratio>
	<fullName>centimeters</fullName>
</unit>
is_set is offline   Reply With Quote
Old 05-29-2010, 06:23 AM   PM User | #2
firepages
Super Moderator


 
Join Date: May 2002
Location: Perth Australia
Posts: 3,943
Thanks: 7
Thanked 82 Times in 81 Posts
firepages will become famous soon enough
hmmmm personally I think this is a very long way around a simple problem ... assuming you know the ratios, and (again personally) I cant see any reason to use an XML file with its extra overhead where a simple array would suffice, also posted in the wrong section , will move to snippets if you want.
__________________
resistance is...

MVC is the current buzz in web application architectures. It comes from event-driven desktop application design and doesn't fit into web application design very well. But luckily nobody really knows what MVC means, so we can call our presentation layer separation mechanism MVC and move on. (Rasmus Lerdorf)
firepages is offline   Reply With Quote
Old 05-30-2010, 07:44 AM   PM User | #3
is_set
New to the CF scene

 
Join Date: May 2010
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
is_set is an unknown quantity at this point
yes i think that to
the original programmer made it complex for nothing
yes and move it | you have to move it before ask me because that is your froum
is_set is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 12:33 PM.


Advertisement
Log in to turn off these ads.