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

<?php


/**
 * 自定义上传文件 PHP接口源代码
 *
 * 接口说明:演示文件上传到接口的获取
 *
 * 最后修改:2024-10-12 12:16:02
 *
 * @author dogstar www.yesapi.cn
 *
 * 来源:https://open.yesapi.cn/apicode/4743.html
 */

function ($params$di) {
    
$result = array('err_code' => 0'err_msg' => '');
    
    
// TODO:编写你的API接口逻辑,开发教程:http://yesapi.cn/docs/#/v2.0/function
    
$result['content'] = 'Hello YesApi';
    
    
$result['upload_file'] = $this->upload_file;
    
    
// 打印调试日记
    
yesapi_debug($this->upload_file);
    
    
// 返回接口结果
    
return $result;
}
在线运行   


回到顶部 ↑