From:             
Operating system: Gentoo
PHP version:      Irrelevant
Package:          MySQL related}
Bug Type:         Bug
Bug description:mysql_field_len reporting value incorrectly

Description:
------------
I am using Gentoo

Test script:
---------------
$db=mysql_connect("localhost","user","pass");

$q=mysql_query("SELECT * FROM mytable");

for($i=0;$i<mysql_num_fields($q);$i++) {

  $fnames[$i]=mysql_field_name($q,$i);

  echo $fnames[$i]." { ".mysql_field_type($q,$i)." (
".mysql_field_len($q,$i)." ) }\n";

}

Expected result:
----------------
Name { string ( 50 ) }

Phone { string ( 48 ) }

Email { string ( 255 ) }

Actual result:
--------------
Name { string ( 150 ) }

Phone { string ( 48 ) }

Email { string ( 765 ) }

-- 
Edit bug report at http://bugs.php.net/bug.php?id=51189&edit=1
-- 
Try a snapshot (PHP 5.2):            
http://bugs.php.net/fix.php?id=51189&r=trysnapshot52
Try a snapshot (PHP 5.3):            
http://bugs.php.net/fix.php?id=51189&r=trysnapshot53
Try a snapshot (PHP 6.0):            
http://bugs.php.net/fix.php?id=51189&r=trysnapshot60
Fixed in SVN:                        
http://bugs.php.net/fix.php?id=51189&r=fixed
Fixed in SVN and need be documented: 
http://bugs.php.net/fix.php?id=51189&r=needdocs
Fixed in release:                    
http://bugs.php.net/fix.php?id=51189&r=alreadyfixed
Need backtrace:                      
http://bugs.php.net/fix.php?id=51189&r=needtrace
Need Reproduce Script:               
http://bugs.php.net/fix.php?id=51189&r=needscript
Try newer version:                   
http://bugs.php.net/fix.php?id=51189&r=oldversion
Not developer issue:                 
http://bugs.php.net/fix.php?id=51189&r=support
Expected behavior:                   
http://bugs.php.net/fix.php?id=51189&r=notwrong
Not enough info:                     
http://bugs.php.net/fix.php?id=51189&r=notenoughinfo
Submitted twice:                     
http://bugs.php.net/fix.php?id=51189&r=submittedtwice
register_globals:                    
http://bugs.php.net/fix.php?id=51189&r=globals
PHP 4 support discontinued:          http://bugs.php.net/fix.php?id=51189&r=php4
Daylight Savings:                    http://bugs.php.net/fix.php?id=51189&r=dst
IIS Stability:                       
http://bugs.php.net/fix.php?id=51189&r=isapi
Install GNU Sed:                     
http://bugs.php.net/fix.php?id=51189&r=gnused
Floating point limitations:          
http://bugs.php.net/fix.php?id=51189&r=float
No Zend Extensions:                  
http://bugs.php.net/fix.php?id=51189&r=nozend
MySQL Configuration Error:           
http://bugs.php.net/fix.php?id=51189&r=mysqlcfg

Reply via email to