hexFix()
Remove the '0x' from hexadecimal numbers
Method signature
private function hexFix($word)
Parameters
Name
Type
Description
word
string
Any hex string from which you want to remove the '0x'
Example
<?php
require 'vendor/autoload.php';
use CircularProtocol\Api\CircularProtocolAPI;
$circular = new CircularProtocolAPI();
$text = "0x48656c6c6f2c20576f726c6421";
$result = $circular->hexFix($text);
echo $result;
Result
The result will be an object of type String:
48656c6c6f2c20576f726c6421
Last updated