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


PHP CMbString::roman2dec方法代碼示例

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


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

示例1: addChapter

 /**
  * Add a  chapter to the Cim10 database
  *
  * @param array $master_entry  The master entry
  * @param array $chapter_entry The chapter entry
  *
  * @return void
  */
 function addChapter($master_entry, $chapter_entry)
 {
     /* We remove the useless characters in the code */
     $master_entry['code'] = self::cleanCode($master_entry['code']);
     $code = '(' . $master_entry['code'] . ')';
     list($sort) = explode('-', $master_entry['code']);
     $date = CMbDT::format($master_entry['date'], '%Y-%m-%d 00:00:00');
     /* Check if the chapter already exists */
     $query = "SELECT `SID` FROM `master` WHERE `code` LIKE '{$code}' AND `type` = 'C';";
     if (!is_null($this->ds->loadResult($query))) {
         return;
     }
     /* Insert the chapter in the master table*/
     $query = "INSERT INTO `master` (`code`, `sort`, `abbrev`, `level`, `type`, `valid`, `date`, `author`)\n      VALUES ('{$code}', '{$sort}\\'', '{$code}', '1', 'C', 1, '{$date}', '" . $master_entry['origine'] . "');";
     if ($this->ds->exec($query)) {
         $this->added_codes++;
         /* Get the SID of the chapter */
         $sid = $this->ds->insertId();
         /* Update the master entry for setting the id1 */
         $query = "UPDATE `master` SET `id1` = {$sid} WHERE `SID` = {$sid};";
         $this->ds->exec($query);
         /* Insert the label */
         $this->insertLabel($sid, 'S', self::cleanLabel($master_entry['label']), $date, $master_entry['origine']);
         $rom = str_replace('Chapitre ', '', $chapter_entry['code']);
         $dec = CMbString::roman2dec($rom);
         /* Create the chapter in the chapter table */
         $query = "INSERT INTO `chapter` (`chap`, `SID`, `rom`) VALUES ({$dec}, {$sid}, '{$rom}');";
         $this->ds->exec($query);
     }
 }
開發者ID:fbone,項目名稱:mediboard4,代碼行數:38,代碼來源:CImportCim10.class.php


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