示例#1
0
文件: Money.php 项目: brick/money
 /**
  * Returns a string representing the integral part of the amount of this money.
  *
  * Example: 123.45 will return '123'.
  *
  * @return string
  */
 public function getIntegral()
 {
     return $this->amount->integral();
 }