ID: 14898
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Status: Open
Bug Type: HTTP related
Operating System: linux slackware8
PHP Version: 4.1.1
New Comment:
the following code works well for chinese double-byte checking.
-----------code modified----------------------
//s = strrchr(filenamebuf, '\\');
char *tmps;
for (tmps=filenamebuf;*tmps;tmps++) {
if (*tmps<0){// *tmps>127, looks like 2 bytes of chinese code
if (!*(tmps+1)) tmps++;
contonue;
}
if (*tmps=='\\') s=tmps;
}
----------code modified end -------------------
Previous Comments:
------------------------------------------------------------------------
[2002-01-07 22:48:48] [EMAIL PROTECTED]
the fix is too rough and can't handle all chinese words, it need more
efforts to check. i will do it in a few days.
------------------------------------------------------------------------
[2002-01-07 01:56:48] [EMAIL PROTECTED]
/*
This is a bug fix for rfc1867.c
try to upload file from win2k with name C:\DISK0\�\�\.txt
the original code get name as '.ext' which should be '�\�\.txt'.
the following modify is necessary to for client using charset=BIG5.
thanks PHP.
lai [EMAIL PROTECTED]
*/
-----------code modified----------------------
//s = strrchr(filenamebuf, '\\');
for (s=filenamebuf+strlen(filenamebuf)-1;s>filenamebuf;s--) {
if (*s=='\\' && *(s-1)>0) break;
}
----------code modified end -------------------
------------------------------------------------------------------------
Edit this bug report at http://bugs.php.net/?id=14898&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]