PhpRiot
Follow phpriot on Twitter
Sponsored Link
Become Zend Certified

Prepare for the ZCE exam using our quizzes (web or iPad/iPhone). More info...


When you're ready get 7.5% off your exam voucher using voucher CJQNOV23 at the Zend Store
Free iPad/iPhone App
Available on the App Store

  • PHP manual
  • Zend Framework manual
  • Smarty manual
  • PHP articles
  • PHP training

Compare

Measurements can also be compared, but without automatic unit conversion. Thus, equals() returns TRUE, only if both the value and the unit of measure are identical.

Example 600. Different measurements

<?php
// Define measurements
$unit = new Zend_Measure_Length(100Zend_Measure_Length::CENTIMETER);
$unit2 = new Zend_Measure_Length(1Zend_Measure_Length::METER);

if (
$unit->equals($unit2)) {
    print 
"Both measurements are identical";
} else {
    print 
"These are different measurements";
}


Example 601. Identical measurements

<?php
// Define measurements
$unit = new Zend_Measure_Length(100Zend_Measure_Length::CENTIMETER);
$unit2 = new Zend_Measure_Length(1Zend_Measure_Length::METER);

$unit2->setType(Zend_Measure_Length::CENTIMETER);

if (
$unit->equals($unit2)) {
    print 
"Both measurements are identical";
} else {
    print 
"These are different measurements";
}


Zend Framework