Write files on the hard disk under a certain amount of concurrency
<?php function write_log($log_content) { $log_file = '/logs/error.log'; if(is_file($log_file)) { // 检测log文件大小,将每个log文件控制在2m以内 $log_filesize = filesize($log_file); $max_size = 2 * 1024 * 1024; // 可以接受的最大的文件大小 if($log_filesize >= $max_size) { $new_log_file = '/logs/error_' . date('YmdHis') . '.log'; rename($log_file, $new_log_file); } } $fp=fopen($log_file,'a+'); if($fp){ $startTime=microtime(); do{ // 这个循环可以保证进程在尝试1m后,如果未能锁定文件,则放弃写入日志的操作 $canWrite=flock($fp,LOCK_EX); if(!$canWrite){ usleep(round(rand(0,100)*1000)); } }while((!$canWrite)&&((microtime()-$startTime)<1000)); if($canWrite){ $content = date('Y-m-d H:i:s') . ' ' . $log_content . "\r\n"; fwrite($fp,$content); } fclose($fp); } }
Copy after login
Statement of this Website
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

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article
Roblox: Grow A Garden - Complete Mutation Guide
3 weeks ago
By DDD
Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
How to fix KB5055612 fails to install in Windows 10?
3 weeks ago
By DDD
Nordhold: Fusion System, Explained
3 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics
Java Tutorial
1666
14


CakePHP Tutorial
1426
52


Laravel Tutorial
1328
25


PHP Tutorial
1273
29


C# Tutorial
1254
24

