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


PHP CEvent::fieldencode方法代碼示例

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


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

示例1: fieldencode

 function fieldencode($s)
 {
     if (is_array($s)) {
         $ret_val = '';
         foreach ($s as $v) {
             $ret_val .= ($ret_val != '' ? ', ' : '') . CEvent::fieldencode($v);
         }
     } else {
         $ret_val = str_replace("%", "%2", $s);
         $ret_val = str_replace("&", "%1", $ret_val);
         $ret_val = str_replace("=", "%3", $ret_val);
     }
     return $ret_val;
 }
開發者ID:ASDAFF,項目名稱:bitrix-5,代碼行數:14,代碼來源:event.php

示例2: Send

 function Send($event, $lid, $arFields, $Duplicate = "Y", $message_id = "")
 {
     $err_mess = CEvent::err_mess() . "<br>Function: Send<br>Line: ";
     global $DB;
     $sqlFields = "";
     if (is_array($arFields) && count($arFields) > 0) {
         $keys = array_keys($arFields);
         for ($i = 0; $i < count($keys); $i++) {
             $sqlFields .= "&" . CEvent::fieldencode($keys[$i]) . "=" . CEvent::fieldencode($arFields[$keys[$i]]);
         }
         if (strlen($sqlFields) > 0) {
             $sqlFields = substr($sqlFields, 1);
         }
     }
     if (is_array($lid)) {
         $lid = implode(",", $lid);
     }
     $arFields = array("EVENT_NAME" => "'" . $DB->ForSQL($event) . "'", "LID" => "'" . $DB->ForSql($lid, 201) . "'", "MESSAGE_ID" => intval($message_id) <= 0 ? "null" : intval($message_id), "C_FIELDS" => "'" . $DB->ForSQL($sqlFields) . "'", "DATE_INSERT" => "getdate()", "DUPLICATE" => $Duplicate != "N" ? "'Y'" : "'N'");
     if (CACHED_b_event !== false) {
         @unlink($_SERVER["DOCUMENT_ROOT"] . "/" . BX_ROOT . "/managed_cache/" . $DB->type . "/b_event");
     }
     return $DB->Insert("b_event", $arFields, $err_mess . __LINE__);
 }
開發者ID:,項目名稱:,代碼行數:23,代碼來源:


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