26 lines
730 B
PHP
Executable File
26 lines
730 B
PHP
Executable File
<?php
|
||
/*
|
||
* 通讯证书文件
|
||
@status 站点状态,-1禁止 0只读 1可用
|
||
@siteId 站点ID
|
||
@suIp 允许访问的IP
|
||
@suDomain 允许访问的域名
|
||
@api 接口用户名(站点用户名)
|
||
@code 用户授权码
|
||
@token 接口通讯的accesstoken文件
|
||
*/
|
||
$cert = array();
|
||
$cert['id'] = '6';
|
||
$cert['siteId'] = '27086';
|
||
$cert['suIp'] = array('127.0.0.1');
|
||
$cert['siteName'] = '';
|
||
$cert['suDomain'] = array('');
|
||
$cert['siteUrl'] = '';
|
||
$cert['api'] = 'dongjiabing';
|
||
$cert['code'] = '';
|
||
$cert['token'] = '5ff8745bffe82e58547d5ae4dd157250';
|
||
$cert['status'] = '0';
|
||
$cert['remark'] = '新创建待审核,创建时间:2017-08-15 20:57:21';
|
||
$cert['updatetime'] = '更新时间:2017-09-22 13:14:12';
|
||
return $cert;
|