加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.php 944 Bytes
一键复制 编辑 原始数据 按行查看 历史
小胡 提交于 2024-04-14 21:00 . 发布官方版本
<?php
/* @authorcode codestrings
* @copyright Leyun internet Technology(Shanghai)Co.,Ltd
* @license http://www.dzzoffice.com/licenses/license.txt
* @package DzzOffice
* @link http://www.dzzoffice.com
* @author zyx(zyx@dzz.cc)
*/
if(!defined('IN_DZZ')) {
exit('Access Denied');
}
define('APP_DIR','dzz/DPlayer/');
if($_GET['path']){
$path=dzzdecode($_GET['path']);
$meta=IO::getMeta($path);
if($meta['name']){
$navtitle=$meta['name'];
$navtitle=str_replace(strrchr($navtitle, "."),"",$navtitle);
}else{
$navtitle='视频';
}
$patharr=explode(':',$path);
if($patharr[0]=='ftp'){
$src=$_G['siteurl'].DZZSCRIPT.'?mod=io&op=getStream&path='.rawurldecode($_GET['path']).'&n=play.'.$_GET['ext'];
}else{
$src=IO::getFileUri($path);
$src=str_replace('-internal.aliyuncs.com','.aliyuncs.com',$src);
}
}elseif($_GET['url']){
$src=$_GET['url'];
}
include template('index');
?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化