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.
Pythonでは、文字列を次のようにエンコードできます
encoded = text.encode('hex') text = encoded.decode('hex')
PHPの対応する関数は何ですか?
あなたが使用することができます
$data = bin2hex("your string"); $string = hex2bin($data);
また
$data = implode('', unpack("H*", "your string")); $string = pack("H*", $data);