本文整理匯總了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 "[]";
}
}
示例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);