Home >Backend Development >PHP Tutorial >高手,上传视频文件到服务器 /upload/ 目录是没法读取的吗?

高手,上传视频文件到服务器 /upload/ 目录是没法读取的吗?

WBOY
WBOYOriginal
2016-06-23 13:16:511038browse

只能上传到网站根目录的upload/目录 才能读取 ?


回复讨论(解决方案)

不是,相对路径也是可以的,例如

目录结构如下
upload/a.txt
test/test.php

在test.php 获取 upload/a.txt内容

<?php$file = '../upload/a.txt';$data = file_get_contents($file);echo $data;?>

在网站根目录建立upload再建立video,上传到/upload/video/

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn