ID: 34118 Updated by: [EMAIL PROTECTED] Reported By: xuefer at 21cn dot com -Status: Open +Status: Assigned Bug Type: Filesystem function related Operating System: cygwin PHP Version: 6CVS-2005-08-13 -Assigned To: +Assigned To: pollita New Comment:
Sara, check this out. Previous Comments: ------------------------------------------------------------------------ [2005-08-13 13:02:24] xuefer at 21cn dot com btw. unicode_semantics=Off phpmyadmin code: $config_fd = fopen($cfgfile_to_load, 'r'); fread($config_fd, filesize($cfgfile_to_load)); fail to read whole file if it's big enough (40k in my case) ------------------------------------------------------------------------ [2005-08-13 11:49:59] xuefer at 21cn dot com Description: ------------ fseek SEEK_SET bug under cygwin tested with lastest CVS checkout Reproduce code: --------------- <?php $fp = fopen(__FILE__, "rb"); fseek($fp, 0, SEEK_SET); echo fread($fp, 1); fseek($fp, 0, SEEK_SET); echo fread($fp, 1); ?> Expected result: ---------------- << Actual result: -------------- <? ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=34118&edit=1