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


PHP History::getHistory方法代碼示例

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


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

示例1: getHistorys

 public static function getHistorys($arr)
 {
     if (!$arr) {
         return null;
     }
     foreach ($arr as $value) {
         $historys[] = History::getHistory($value);
     }
     if (isset($historys)) {
         return $historys;
     } else {
         return null;
     }
 }
開發者ID:sollian,項目名稱:logo_doctor,代碼行數:14,代碼來源:History.php

示例2: json_encode

                    //$index_a[2] == book id
                    if (count($index_a) == 3) {
                        $stats = new Stats($index_a[0], $index_a[2]);
                        $res['stats'] = $stats->printStats();
                    } else {
                        //As there are no "global" stats for users yet (haven't come up with a reason to have it, and what it would include)
                        $res['error'] = 'Ingen bruker er spesifisert.';
                    }
                }
            }
        } else {
            if ($index_a[0] == "global") {
                if (!isset($index_a[1])) {
                } else {
                    if ($index_a[1] == "history") {
                        if (!isset($index_a[2])) {
                            //Display global history of lended books
                            require 'history.class.php';
                            $history = new History();
                            $res['history'] = $history->getHistory();
                        } else {
                        }
                    }
                }
            }
        }
    }
} else {
    //Default page
}
echo json_encode($res);
開發者ID:toyenyouthlibrary,項目名稱:backend,代碼行數:31,代碼來源:index-api.php

示例3: iconv

    $img_path = $img_path . $_FILES['file']['name'];
    $target_path = ".." . $img_path;
    $target_path = iconv("UTF-8", "gb2312", $target_path);
    if (!move_uploaded_file($_FILES['file']['tmp_name'], $target_path)) {
        echo $target_path;
        echo "服務器保存文件失敗";
    } else {
        chmod($target_path, 511);
        $history = new History(null, $user, null, $img_path, null, null, null);
        /**
         * 插入
         */
        $sql = $history->getInsertSql(TABLE_HISTORY, $user);
        $mysql = new MySql();
        $mysql->query($sql);
        /**
         * 查詢
         */
        $sql = "SELECT `id` FROM " . TABLE_HISTORY . " WHERE img='" . $img_path . "'";
        $result = $mysql->query($sql);
        $value = $mysql->fetcharray($result);
        $history = History::getHistory($value);
        echo $history->id;
        /**
         * 開啟匹配程序
         */
        $fp = fsockopen("localhost", 80);
        fputs($fp, "GET /logodoctor/php/processCore.php?path={$target_path}\r\n\r\n");
        fclose($fp);
    }
}
開發者ID:sollian,項目名稱:logo_doctor,代碼行數:31,代碼來源:uploadFile.php


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