|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2005-01-06 11:30 UTC] georg@php.net
  [2005-01-06 13:19 UTC] guillaume dot jung at usocome dot com
  [2005-01-10 02:24 UTC] sniper@php.net
  [2005-01-10 09:15 UTC] guillaume dot jung at usocome dot com
 | |||||||||||||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 03:00:01 2025 UTC | 
Description: ------------ With the last version of PHP5 mysql_fetch_field block and all scripts are timed out. Reproduce code: --------------- function PMA_DBI_get_fields_meta($result) { $fields = array(); $num_fields = mysql_num_fields($result); for ($i = 1; $i < $num_fields; $i++) { $fields[] = PMA_convert_display_charset(mysql_fetch_field($result, $i)); } return $fields; } Expected result: ---------------- This code come from phpmyadmin and when I execute sql.php file it blocks. Actual result: -------------- Script timed out.