[lang-ref] ( string_to_hex ) ( php )

<?php
public function testStringToHex(): void
{
	// bin2hex
	$s = 'abc';
	$h = bin2hex($s);
	$this->assertSame('616263', $h);
}