|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2016-12-30 23:05 UTC] cmb@php.net
-Package: Feature/Change Request
+Package: Filesystem function related
[2020-01-05 11:45 UTC] cmb@php.net
-Status: Open
+Status: Suspended
[2020-01-05 11:45 UTC] cmb@php.net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 05:00:01 2025 UTC |
Description: ------------ I want a function like fcut; Remove bytes from a file: Begin to Length. fcut ( FileHandle, Begin, Length); Sorry for my bad english. I comes from German (Europe). Reproduce code: --------------- <?PHP // Content "plee.txt": // abcdefghijklmnopqrstuvwxyz $myfile = fopen( "plee.txt", 'r+' ); fcut( $myfile, 10, 5); fclose( $myfile ); // New Content: // abcdefghijpqrstuvwxyz ?>