Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个原始字节字符串 $b 来自
$b=sha1($k,true);
我需要知道 $b[$ix] 的值。我找到的唯一方法是
$arr=unpack('Cw',$b[$ix]); $value=$arr["w"];
但是对于这样的基本操作,它似乎太多了。
有没有更直接的方法来访问原始字符串中的字节?
ASCII值:
$b=sha1($k,true); echo ord($b[$ix]);