ShopData.php
1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
/**
* Created by PhpStorm.
* User: Targaryen
* Date: 2016/4/21
* Time: 15:55
*/
namespace LibModels\Wap\Shop;
use Api\Yohobuy;
use Api\Sign;
class ShopData
{
/**
* 调取店铺简介数据
*
* @param $shopId
* @return mixed
*/
public static function getShopIntro($shopId = 0)
{
$param = Yohobuy::param();
$param['method'] = 'app.shops.getIntro';
$param['shops_id'] = $shopId;
$param['client_secret'] = Sign::getSign($param);
return Yohobuy::get(Yohobuy::API_URL, $param);
}
public static function getShopCategory($shopId = 0)
{
$param = Yohobuy::param();
$param['method'] = 'app.shop.getSortInfo';
$param['shops_id'] = $shopId;
$param['client_secret'] = Sign::getSign($param);
return Yohobuy::get(Yohobuy::API_URL, $param);
}
/**
*
* 辅助方法 Debug 数据输出
*
* @param $data
* @param bool $is_exit 输出后是否中断执行
*/
public static function debugOut($data, $is_exit = true)
{
header("Content-type:text/html;charset=utf-8");
echo '<pre>';
print_r($data);
echo '</pre>';
if ($is_exit) {
exit;
}
}
}