|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patchesbase-convert-notice (last revision 2016-06-30 12:10 UTC by cmb@php.net)Pull RequestsHistoryAllCommentsChangesGit/SVN commits
[2016-06-30 11:35 UTC] cmb@php.net
-Status: Open
+Status: Verified
[2016-06-30 11:35 UTC] cmb@php.net
[2016-06-30 11:43 UTC] cmb@php.net
[2016-06-30 12:10 UTC] cmb@php.net
[2016-06-30 12:12 UTC] cmb@php.net
[2019-07-11 20:23 UTC] Scott at exussum dot co dot uk
[2019-07-11 20:34 UTC] nikic@php.net
-Status: Verified
+Status: Closed
-Assigned To:
+Assigned To: nikic
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 10:00:02 2025 UTC |
Description: ------------ e.g. base_convert(101,10,10) and base_convert(10.1,10,10) return the same result as the decimal dot character is simply ignored/skipped over (found in the user notes on base_convert() in the manual) Test script: --------------- echo base_convert("10@23",10,10); Expected result: ---------------- 10 // or an error Actual result: -------------- 1023