search
HomeBackend DevelopmentPHP Tutorialphp上传文件move_uploaded_file的问题


Linux系统下跑的apache服务器。

就是实现HLS协议播放音频:

程序上传a.m3u8和1.ts,10秒后上传a.m3u8和2.ts,...a.m3u8,3.ts...如此循环下去。
当我没有打开播放器客户端的时候 文件上传一切正常,多长时间都没问题。

当我打开播放器播放这些文件的时候,也就是访问那个a.m3u8文件时候。
这个时候上传a.m3u8 就失败了,但是上传其他文件都正常,也就是说除了文件名是a.m3u8的文件,其他文件都可以上传。

php页面接收文件的代码大致如下:

$temp_name = $_FILES['upfile']['tmp_name'];
$file_name = $_FILES['upfile']['name']; 
$file_name = str_replace("\\","",$file_name);
$file_name = str_replace("'","",$file_name);
$file_path = $upload_dir.$file_name;

//文件名字检查
if ( $file_name =="") { 
$message = "Invalid File Name Specified";
return $message;
}

$result  =  move_uploaded_file($temp_name, $file_path);
if (!chmod($file_path,0755))
$message = "change permission to 755 failed.";
 else
$message = ($result)?"$file_name uploaded successfully." : "Somthing is wrong with uploading a file.";

上传失败的时候 message 的内容是 "change permission to 755 failed."
我分析了一下result的内容是空的,说明move_uploaded_file这个函数执行失败了。
原来目录下是有a.m3u8文件的,上传失败的时候 目录下的a.m3u8文件也消失了。

各位大神,帮小弟看看这是神马问题呢?
是因为权限问题么?因为a.m3u8正在被访问,所以无法move替换掉他么?
还是因为其他神马问题呢。


求大神们指点啊 !
谢谢啦!!!






回复讨论(解决方案)

打开php的错误提示。
ini_set("display_errors",1);
error_reporting(E_ALL);
最有可能原因是move_uploaded_file的目标文件夹不具有写入的权限。

打开php的错误提示。
ini_set("display_errors",1);
error_reporting(E_ALL);
最有可能原因是move_uploaded_file的目标文件夹不具有写入的权限。

谢谢你的回答!  
由于服务器不是我能用控制的,所以 打开php的错误提示 这个方法只能明天试试看了。
可是当我在没有客户端在访问这个move_uploaded_file的目标文件的时候,一切都是正常的。
当有客户端在访问这个文件的时候,move_uploaded_file就失败了,而且原先这个move_uploaded_file的目标文件是存在的,失败之后文件就没掉了。


您不不是已经知道原因了吗? 因为a.m3u8正在被访问,所以无法move替换掉他

您不不是已经知道原因了吗? 因为a.m3u8正在被访问,所以无法move替换掉他

那我想知道  什么方法可以解决这个问题?
就是可以强制替换的。

关闭使用该文件的软件。别无他法
既然已经有了,重新上传有什么意义呢?

关闭使用该文件的软件。别无他法
既然已经有了,重新上传有什么意义呢?

是为了实现HLS协议,
m3u8是个索引文件,里面的内容是要不断更新的。

刚刚得知,这个apache是跑在windows上的。 通过测试发现了,跑在linux下的是可以实现的。
可能是因为windows的缘故了,正在使用,无法替换。  linux是可以替换的。 

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
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

How to Register and Use Laravel Service ProvidersHow to Register and Use Laravel Service ProvidersMar 07, 2025 am 01:18 AM

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft