|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2017-07-18 11:14 UTC] requinix@php.net
-Status: Open
+Status: Not a bug
-Package: *General Issues
+Package: Zip Related
[2017-07-18 11:14 UTC] requinix@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Mon Mar 23 18:00:02 2026 UTC |
Description: ------------ PHP ZipArchive dont support UTF8 files for open my problem is OPEN files with UTF8 name. ZipArchive dont open files with UTF8 character. i dont add new file i need only open file. Test script: --------------- $path = "files/تست تست.zip"; $zip = new \ZipArchive(); if($zip->open($path) === true) { return "File opened"; } else { return "File could not be opened"; }