tv/extend/api/homead.php
2025-11-28 14:28:58 +08:00

24 lines
708 B
PHP

<?php
/*
Name:获取首页广告配置
Version:1.0
Author:乐酷
Author QQ:3178156778
Author Url:shouq.sujie520.cn
*/
if (!isset($app_res) or !is_array($app_res)) out(100); //如果需要调用应用配置请先判断是否加载app配置
$app_homead = [];
$app_homead_res = Db::table('app_homead')->where('appid', $appid)->order('id desc')->select(); //获取首页广告配置
if (is_array($app_homead_res)) {
foreach ($app_homead_res as $k => $v) {
$rows = $app_homead_res[$k];
$app_homead[] = [
'name' => $rows['name'],
'extend' => $rows['data'],
'searchable' => $rows['searchable']
];
}
encryptionout(200, $app_homead, $app_res);
}
out(201, '自定义接口获取失败', $app_res);
?>