Documentation

Creation of Measurements - Zend_Measure

Creation of Measurements

When creating a measurement object, Zend_Measure_* methods expect the input/original measurement data value as the first parameter. This can be a numeric argument, a String without units, or a localized string with unit(s) specified. The second parameter defines the type of the measurement. Both parameters are mandatory. The language may optionally be specified as the third parameter.

Creating measurements from integers and floats

In addition to integer data values, floating point types may be used, but » "simple decimal fractions like 0.1 or 0.7 cannot be converted into their internal binary counterparts without a little loss of precision," sometimes giving surprising results. Also, do not compare two "float" type numbers for equality.

Example #1 Creation using integer and floating values

  1. $measurement = 1234.7;
  2. $unit = new Zend_Measure_Length((integer)$measurement,
  3.                                 Zend_Measure_Length::STANDARD);
  4. echo $unit;
  5. // outputs '1234 m' (meters)
  6.  
  7. $unit = new Zend_Measure_Length($measurement, Zend_Measure_Length::STANDARD);
  8. echo $unit;
  9. // outputs '1234.7 m' (meters)

Creating measurements from strings

Many measurements received as input to Zend Framework applications can only be passed to Zend_Measure_* classes as strings, such as numbers written using » roman numerals or extremely large binary values that exceed the precision of PHP's native integer and float types. Since integers can be denoted using strings, if there is any risk of losing precision due to limitations of PHP's native integer and float types, using strings instead. Zend_Measure_Number uses the BCMath extension to support arbitrary precision, as shown in the example below, to avoid limitations in many PHP functions, such as » bin2dec().

Example #2 Creation using strings

  1. $mystring = "10010100111010111010100001011011101010001";
  2. $unit = new Zend_Measure_Number($mystring, Zend_Measure_Number::BINARY);
  3.  
  4. echo $unit;

Measurements from localized strings

When a string is entered in a localized notation, the correct interpretation can not be determined without knowing the intended locale. The division of decimal digits with "." and grouping of thousands with "," is common in the English language, but not so in other languages. For example, the English number "1,234.50" would be interpreted as meaning "1.2345" in German. To deal with such problems, the locale-aware Zend_Measure_* family of classes offer the possibility to specify a language or region to disambiguate the input data and properly interpret the intended semantic value.

Example #3 Localized string

  1. $locale = new Zend_Locale('de');
  2. $mystring = "1,234.50";
  3. $unit = new Zend_Measure_Length($mystring,
  4.                                 Zend_Measure_Length::STANDARD,
  5.                                 $locale);
  6. echo $unit; // outputs "1.234 m"
  7.  
  8. $mystring = "1,234.50";
  9. $unit = new Zend_Measure_Length($mystring,
  10.                                 Zend_Measure_Length::STANDARD,
  11.                                 'en_US');
  12. echo $unit; // outputs "1234.50 m"

Since Zend Framework 1.7.0 Zend_Measure does also support the usage of an application wide locale. You can simply set a Zend_Locale instance to the registry like shown below. With this notation you can forget about setting the locale manually with each instance when you want to use the same locale multiple times.

  1. // in your bootstrap file
  2. $locale = new Zend_Locale('de_AT');
  3. Zend_Registry::set('Zend_Locale', $locale);
  4.  
  5. // somewhere in your application
  6. $length = new Zend_Measure_Length(Zend_Measure_Length::METER();

Copyright

© 2006-2021 by Zend by Perforce. Made with by awesome contributors.

This website is built using zend-expressive and it runs on PHP 7.

Contacts