|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-04-27 07:04 UTC] admin at todayis dot kr
[2012-04-27 07:04 UTC] admin at todayis dot kr
-Summary: bitwise operation make buffer overflow
+Summary: bitwise operation make overflow
-PHP Version: 5.4Git-2012-04-27 (Git)
+PHP Version: 5.4.0
[2015-06-07 16:28 UTC] cmb@php.net
-Status: Open
+Status: Not a bug
-Package: Apache2 related
+Package: Scripting Engine problem
-Assigned To:
+Assigned To: cmb
[2015-06-07 16:28 UTC] cmb@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 04 15:00:01 2025 UTC |
Description: ------------ if i use bitwise operation then variable type doesn't changed float or other type. stay in int Test script: --------------- $value = "abcdefg"; for($i=0,$h=0;$i <strlen($value);$i++) { $h = ($h << 10) + ord($value[$i]); echo $h."\n"; }