[lang-ref] ( hex_to_string ) ( php )
<?php
public function testHexToString(): void
{
// hex2bin
$h = '616263';
$s = hex2bin($h);
$this->assertNotFalse($s);
$this->assertSame('abc', $s);
}
<?php
public function testHexToString(): void
{
// hex2bin
$h = '616263';
$s = hex2bin($h);
$this->assertNotFalse($s);
$this->assertSame('abc', $s);
}