当前位置: 首页>>代码示例>>PHP>>正文


PHP History::getHistorys方法代码示例

本文整理汇总了PHP中History::getHistorys方法的典型用法代码示例。如果您正苦于以下问题:PHP History::getHistorys方法的具体用法?PHP History::getHistorys怎么用?PHP History::getHistorys使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在History的用法示例。


在下文中一共展示了History::getHistorys方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getJsons

 public static function getJsons($arr)
 {
     if (!$arr) {
         return null;
     }
     $historys = History::getHistorys($arr);
     if ($historys) {
         return json_encode($historys, JSON_UNESCAPED_UNICODE);
     } else {
         return "[]";
     }
 }
开发者ID:sollian,项目名称:logo_doctor,代码行数:12,代码来源:History.php

示例2: define

include_once "utils/MySql.php";
include_once "model/History.php";
include_once "model/Logo.php";
define("QUERY_STATE", "SELECT * FROM " . TABLE_HISTORY . " WHERE `id` IN");
if (is_array($_GET) && count($_GET) > 0) {
    if (isset($_GET["ids"])) {
        $ids = $_GET["ids"];
    }
}
if (!isset($ids)) {
    echo "请求参数错误";
} else {
    $mysql = new MySql();
    $result = $mysql->query(QUERY_STATE . "(" . $ids . ")");
    $arr = $mysql->fetchall($result);
    $histories = History::getHistorys($arr);
    if ($histories) {
        foreach ($histories as $history) {
            if (!$history->logoId) {
                /**
                 * 查看是否处理完毕
                 */
                $imgPath = $history->img;
                $filePath = ".." . $imgPath . ".txt";
                if (is_file($filePath)) {
                    /**
                     * 处理完毕,更新数据库
                     */
                    $file = fopen($filePath, "r");
                    if ($file) {
                        $logoName = fgets($file);
开发者ID:sollian,项目名称:logo_doctor,代码行数:31,代码来源:queryHistoryState.php


注:本文中的History::getHistorys方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。