toDestUnit() публичный Метод

Convert instance value to given unit.
public toDestUnit ( $time, $destUnit = null, $mode = null ) : integer
Результат integer
Пример #1
0
 /**
  * It should convert one time unit to another in throughput mode.
  *
  * @dataProvider provideConvertThroughput
  */
 public function testConvertThroughput($time, $unit, $destUnit, $expectedThroughput)
 {
     $unit = new TimeUnit($unit, $destUnit);
     $result = $unit->toDestUnit($time, null, TimeUnit::MODE_THROUGHPUT);
     $this->assertEquals($expectedThroughput, $result);
 }