本文整理汇总了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);