+ 复制到我的接口(请先登录,支持在线开发API)    预览接口发布效果    查看开发教程

<?php


/**
 * 判断是否手机请求 PHP接口源代码
 *
 * 接口说明:是否手机客户端请求
 *
 * 最后修改:2024-10-12 12:17:02
 *
 * @author dogstar www.yesapi.cn
 *
 * 来源:https://open.yesapi.cn/apicode/2403.html
 */

function ($params$di) {
   
$result = array('err_code' => 0'err_msg' => '');

    
// TODO:在这里编写你的具体业务
    
$result['isMobile'] = \App\Common\YesApiIsMobile();

    return 
$result// 返回接口结果
}
在线运行   


回到顶部 ↑