Update deprecated offset access syntax with curly braces in ASNValue
This commit is contained in:
parent
7d35cc6a09
commit
f2e11ff213
|
@ -110,7 +110,7 @@ class ASNValue
|
||||||
function SetIntBuffer($Value)
|
function SetIntBuffer($Value)
|
||||||
{
|
{
|
||||||
if (strlen($Value) > 1) {
|
if (strlen($Value) > 1) {
|
||||||
$firstByte = ord($Value{0});
|
$firstByte = ord($Value[0]);
|
||||||
if ($firstByte & 0x80) { //first bit set
|
if ($firstByte & 0x80) { //first bit set
|
||||||
$Value = chr(0x00) . $Value;
|
$Value = chr(0x00) . $Value;
|
||||||
}
|
}
|
||||||
|
@ -122,7 +122,7 @@ class ASNValue
|
||||||
function GetIntBuffer()
|
function GetIntBuffer()
|
||||||
{
|
{
|
||||||
$result = $this->Value;
|
$result = $this->Value;
|
||||||
if (ord($result{0}) == 0x00) {
|
if (ord($result[0]) == 0x00) {
|
||||||
$result = substr($result, 1);
|
$result = substr($result, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue