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


PHP logger::sql方法代碼示例

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


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

示例1: query

 function query($sql, $is_read = true)
 {
     $result = mysql_query($sql, self::$conn[$this->i]);
     $log = config('log', 'mysql');
     $log['is_record_sql'] and logger::sql($sql, $is_read);
     if ($result) {
         return $result;
     }
     $info = $sql . ' {' . mysql_error() . '}';
     $log['is_record_exception'] and logger::exception('mysql', $info);
     throw new Exception($info, 104);
 }
開發者ID:jiokss,項目名稱:framework,代碼行數:12,代碼來源:mysql.php

示例2: empty

        $MessageGroupId = empty($mid) ? $appmsgid : $mid;
    }
    if (empty($MessageGroupId)) {
        $MessageGroupId = 'null';
    }
    if (empty($commMsgInfoId)) {
        $commMsgInfoId = 'null';
    }
    $sql = "\nINSERT INTO babysitter_weixin_message_info_fetch_history\n(weixin_id, comm_msg_info_id, message_group_id, message_item_index, is_multi, title, content_url, publish_time, read_num, like_num, fetched_time)\nVALUES\n(\n'{$weixinID}'\n, {$commMsgInfoId}\n, {$MessageGroupId}\n, {$msgInfoOneEntry->MessageItemIndex}\n, {$isMulti}\n, '{$title}'\n, '{$contentURL}'\n, from_unixtime({$msgInfoOneEntry->PublishTimestamp})\n, {$readNum}\n, {$likeNum}\n, from_unixtime({$msgInfoOneEntry->CrawlTimestamp})\n);\n    ";
    $sqlList[] = trim(preg_replace("/[\\r\\n]/", " ", $sql));
}
$dbLink->close();
$sqlOutput = PHP_EOL . implode(PHP_EOL, $sqlList);
logger::sql($sqlOutput);
logger::sql(PHP_EOL);
logger::sql("\nset session sql_safe_updates = 0;\nupdate babysitter_weixin_message_info_fetch_history h left join babysitter_account a on a.weibo_id = h.weixin_id and a.weibo_type = 9 set h.account_id = a.account_id where h.account_id is null;\n");
logger::info($sqlOutput);
logger::info("END.");
class utils
{
    public static function removeNonUtf8($string)
    {
        $regex = <<<'END'
/
  (
    (?: [\x00-\x7F]                 # single-byte sequences   0xxxxxxx
    |   [\xC0-\xDF][\x80-\xBF]      # double-byte sequences   110xxxxx 10xxxxxx
    |   [\xE0-\xEF][\x80-\xBF]{2}   # triple-byte sequences   1110xxxx 10xxxxxx * 2
    |   [\xF0-\xF7][\x80-\xBF]{3}   # quadruple-byte sequence 11110xxx 10xxxxxx * 3
    ){1,100}                        # ...one or more times
  )
開發者ID:anyfly8,項目名稱:WeixinCrawler,代碼行數:31,代碼來源:messageInfoListJsonToSql.php


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