當前位置: 首頁>>代碼示例>>PHP>>正文


PHP util::number_to_word方法代碼示例

本文整理匯總了PHP中util::number_to_word方法的典型用法代碼示例。如果您正苦於以下問題:PHP util::number_to_word方法的具體用法?PHP util::number_to_word怎麽用?PHP util::number_to_word使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在util的用法示例。


在下文中一共展示了util::number_to_word方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: test_number_to_word

 public function test_number_to_word()
 {
     $this->assertEquals('one', util::number_to_word(1));
     $this->assertEquals('five', util::number_to_word(5));
     $this->assertEquals('fifteen', util::number_to_word(15));
     $this->assertEquals('one hundred and thirty-six', util::number_to_word(136));
     $this->assertEquals('negative twelve', util::number_to_word(-12));
     $this->assertEquals('zero point eight', util::number_to_word(0.8));
 }
開發者ID:rubymatrix,項目名稱:utilphp,代碼行數:9,代碼來源:util.php

示例2: test_number_to_word

 public function test_number_to_word()
 {
     try {
         util::number_to_word('junk data');
         $this->fail('Accepted junk data');
     } catch (\LogicException $e) {
         $this->assertEquals('Not a number', $e->getMessage());
     }
     // Partially numeric.
     $this->assertEquals('', util::number_to_word('1a'));
     // Decimals
     $this->assertEquals('five point zero five', util::number_to_word('5.05'));
     $this->assertEquals('zero point eight', util::number_to_word(0.8));
     // Integers
     $this->assertEquals('positive one', util::number_to_word('+1'));
     $this->assertEquals('negative twelve', util::number_to_word(-12));
     $this->assertEquals('one', util::number_to_word(1));
     $this->assertEquals('five', util::number_to_word(5));
     $this->assertEquals('fifteen', util::number_to_word(15));
     $this->assertEquals('twenty-one', util::number_to_word(21));
     $this->assertEquals('thirty-two', util::number_to_word(32));
     $this->assertEquals('forty-three', util::number_to_word(43));
     $this->assertEquals('fifty-four', util::number_to_word(54));
     $this->assertEquals('sixty-six', util::number_to_word(66));
     $this->assertEquals('seventy-seven', util::number_to_word(77));
     $this->assertEquals('eighty-eight', util::number_to_word(88));
     $this->assertEquals('ninety-nine', util::number_to_word(99));
     $this->assertEquals('one hundred and thirty-six', util::number_to_word(136));
     $this->assertEquals('ten', util::number_to_word(10));
     $this->assertEquals('twenty', util::number_to_word(20));
     $this->assertEquals('thirty', util::number_to_word(30));
     $this->assertEquals('forty', util::number_to_word(40));
     $this->assertEquals('fifty', util::number_to_word(50));
     $this->assertEquals('sixty', util::number_to_word(60));
     $this->assertEquals('seventy', util::number_to_word(70));
     $this->assertEquals('eighty', util::number_to_word(80));
     $this->assertEquals('ninety', util::number_to_word(90));
     $this->assertEquals('eleven', util::number_to_word(11));
     $this->assertEquals('thirteen', util::number_to_word(13));
     $this->assertEquals('fourteen', util::number_to_word(14));
     $this->assertEquals('fifteen', util::number_to_word(15));
     $this->assertEquals('sixteen', util::number_to_word(16));
     $this->assertEquals('seventeen', util::number_to_word(17));
     $this->assertEquals('eighteen', util::number_to_word(18));
     $this->assertEquals('nineteen', util::number_to_word(19));
     $this->assertEquals('one thousand', util::number_to_word(1000));
     $this->assertEquals('one million', util::number_to_word(1000000));
     $this->assertEquals('one billion', util::number_to_word(1000000000));
     $this->assertEquals('one trillion', util::number_to_word(1000000000000.0));
     $this->assertEquals('one quadrillion', util::number_to_word('1000000000000000'));
     $this->assertEquals('one quintrillion', util::number_to_word('1000000000000000000'));
     $this->assertEquals('one sextillion', util::number_to_word('1000000000000000000000'));
     $this->assertEquals('one septillion', util::number_to_word('1000000000000000000000000'));
     $this->assertEquals('one octillion', util::number_to_word('1000000000000000000000000000'));
     $this->assertEquals('one nonillion', util::number_to_word('1000000000000000000000000000000'));
     $this->assertEquals('one decillion', util::number_to_word('1000000000000000000000000000000000'));
     $this->assertEquals('one', util::number_to_word('1000000000000000000000000000000000000000000'));
 }
開發者ID:vijay8090,項目名稱:pilot,代碼行數:58,代碼來源:UtilTest.php


注:本文中的util::number_to_word方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。