|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-10-30 09:48 UTC] stas@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 03:00:01 2025 UTC |
It looks, that unpack("H*", ... doesn't work correctly - it gives me no result. The script: $a = 'abcdefg'; $arr = unpack("H*",$a); echo "<BR>H*: ". $arr[""]; $arr = unpack("H14",$a); echo "<BR>H14: ". $arr[""]; gives me this otput: H*: H14: 61626364656667 In 3.0.16 workt the first unpack() line correctly (the second not, but never mind). Honza honzam@ecn.cz