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


PHP Problem::getIdProblem方法代碼示例

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


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

示例1: insert

 /**
  * bool insert(Problem $problem, int $idUser, string $login)
  *
  * Inserts a new medical problem into the deleted problems table.
  *
  * @param Problem $problem medical problem to insert
  * @param int $idUser key of user that makes deletion
  * @param string $login login session of user that makes deletion
  * @return boolean returns false, if error occurs
  * @access public
  */
 function insert($problem, $idUser, $login)
 {
     $sql = "INSERT INTO " . $this->_table;
     $sql .= " (id_problem, last_update_date, id_patient, id_member, collegiate_number, order_number, ";
     $sql .= "opening_date, closing_date, meeting_place, wording, subjective, objective, ";
     $sql .= "appreciation, action_plan, prescription, create_date, id_user, login) VALUES (";
     $sql .= "?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, NOW(), ?, ?);";
     $params = array($problem->getIdProblem(), $problem->getLastUpdateDate(), $problem->getIdPatient(), $problem->getIdMember(), urlencode($problem->getCollegiateNumber()), $problem->getOrderNumber(), $problem->getOpeningDate(), $problem->getClosingDate(), urlencode($problem->getMeetingPlace()), $problem->getWording(), urlencode($problem->getSubjective()), urlencode($problem->getObjective()), urlencode($problem->getAppreciation()), urlencode($problem->getActionPlan()), urlencode($problem->getPrescription()), intval($idUser), urlencode($login));
     return $this->exec($sql, $params);
 }
開發者ID:edubort,項目名稱:openclinic-1,代碼行數:21,代碼來源:DelProblem.php

示例2: update

 /**
  * bool update(Problem $problem)
  *
  * Update a medical problem in the problems table.
  *
  * @param Problem $problem medical problem to update
  * @return boolean returns false, if error occurs
  * @access public
  */
 function update($problem)
 {
     if (!$problem instanceof Problem) {
         $this->_error = "Argument is an inappropriate object.";
         return false;
     }
     $sql = "UPDATE " . $this->_table . " SET " . "last_update_date=CURDATE(), " . "id_member=?, " . "closing_date=?, " . "meeting_place=?, " . "wording=?, " . "subjective=?, " . "objective=?, " . "appreciation=?, " . "action_plan=?, " . "prescription=? " . "WHERE id_problem=?;";
     $params = array($problem->getIdMember(), urlencode($problem->getClosingDate(false)), urlencode($problem->getMeetingPlace()), urlencode($problem->getWording()), urlencode($problem->getSubjective()), urlencode($problem->getObjective()), urlencode($problem->getAppreciation()), urlencode($problem->getActionPlan()), urlencode($problem->getPrescription()), $problem->getIdProblem());
     return $this->exec($sql, $params);
 }
開發者ID:edubort,項目名稱:openclinic-1,代碼行數:19,代碼來源:Problem.php


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