|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2003-05-15 07:33 UTC] derick@php.net
  [2003-05-15 09:10 UTC] derick@php.net
  [2003-09-10 21:15 UTC] hholzgra@php.net
  [2004-04-01 04:50 UTC] irchtml@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 04:00:01 2025 UTC | 
Both the following commands outputs same value: base_convert("aaaaaaaaaaa", 36, 10); base_convert("aaaaaaaaaab", 36, 10); output: 37606201097790608 In fact, the last character can be whatever between 0-z, and the output is always same. This bug appears only if strlen($string_to_convert) > 10.