Cheetah
Static Public Member Functions | Public Attributes | List of all members
Transform Class Reference

Static Public Member Functions

static isLittleEndian ()
 
static isBigEndian ()
 
static toInt64LE ($value)
 
static fromInt64LE ($value)
 
static toInt64BE ($value)
 
static fromInt64BE ($value)
 
static toInt32 ($value)
 
static fromInt32 ($value)
 
static toInt32LE ($value)
 
static fromInt32LE ($value)
 
static toInt32BE ($value)
 
static fromInt32BE ($value)
 
static toUInt32LE ($value)
 
static fromUInt32LE ($value)
 
static toUInt32BE ($value)
 
static fromUInt32BE ($value)
 
static toInt16 ($value)
 
static fromInt16 ($value)
 
static toInt16LE ($value)
 
static fromInt16LE ($value)
 
static toInt16BE ($value)
 
static fromInt16BE ($value)
 
static toUInt16LE ($value)
 
static fromUInt16LE ($value)
 
static toUInt16BE ($value)
 
static fromUInt16BE ($value)
 
static toInt8 ($value)
 
static fromInt8 ($value)
 
static toUInt8 ($value)
 
static fromUInt8 ($value)
 
static toFloat ($value)
 
static fromFloat ($value)
 
static toFloatLE ($value)
 
static fromFloatLE ($value)
 
static toFloatBE ($value)
 
static fromFloatBE ($value)
 
static toString8 ($value, $length=false, $padding="\0")
 
static fromString8 ($value)
 
static toString16 ($value, $order=false, $length=false, $padding="\0")
 
static fromString16 ($value, &$order=false, $trimOrder=false)
 
static toHHex ($value)
 
static fromHHex ($value)
 
static toLHex ($value)
 
static fromLHex ($value)
 
static toGUID ($value)
 
static fromGUID ($value)
 

Public Attributes

const MACHINE_ENDIAN_ORDER = 0
 
const LITTLE_ENDIAN_ORDER = 1
 
const BIG_ENDIAN_ORDER = 2
 

Detailed Description

Definition at line 49 of file Transform.class.php.

Member Function Documentation

◆ fromFloat()

static Transform::fromFloat (   $value)
static

Returns machine endian ordered binary data as a floating point number.

Parameters
string$valueThe binary data string.
Returns
float

Definition at line 470 of file Transform.class.php.

◆ fromFloatBE()

static Transform::fromFloatBE (   $value)
static

Returns big-endian ordered binary data as a float point number.

Parameters
string$valueThe binary data string.
Returns
float

Definition at line 524 of file Transform.class.php.

◆ fromFloatLE()

static Transform::fromFloatLE (   $value)
static

Returns little-endian ordered binary data as a floating point number.

Parameters
string$valueThe binary data string.
Returns
float

Definition at line 496 of file Transform.class.php.

◆ fromGUID()

static Transform::fromGUID (   $value)
static

Returns the little-endian ordered binary data as big-endian ordered hexadecimal GUID string.

Parameters
string$valueThe binary data string.
Returns
string

Definition at line 698 of file Transform.class.php.

◆ fromHHex()

static Transform::fromHHex (   $value)
static

Returns binary data as hexadecimal string having high nibble first.

Parameters
string$valueThe binary data string.
Returns
string

Definition at line 647 of file Transform.class.php.

◆ fromInt16()

static Transform::fromInt16 (   $value)
static

Returns machine endian ordered binary data as signed 16-bit integer.

Parameters
string$valueThe binary data string.
Returns
integer

Definition at line 286 of file Transform.class.php.

◆ fromInt16BE()

static Transform::fromInt16BE (   $value)
static

Returns big-endian ordered binary data as signed 16-bit integer.

Parameters
string$valueThe binary data string.
Returns
integer

Definition at line 340 of file Transform.class.php.

◆ fromInt16LE()

static Transform::fromInt16LE (   $value)
static

Returns little-endian ordered binary data as signed 16-bit integer.

Parameters
string$valueThe binary data string.
Returns
integer

Definition at line 312 of file Transform.class.php.

◆ fromInt32()

static Transform::fromInt32 (   $value)
static

Returns machine-endian ordered binary data as signed 32-bit integer.

Parameters
string$valueThe binary data string.
Returns
integer

Definition at line 151 of file Transform.class.php.

◆ fromInt32BE()

static Transform::fromInt32BE (   $value)
static

Returns big-endian ordered binary data as signed 32-bit integer.

Parameters
string$valueThe binary data string.
Returns
integer

Definition at line 205 of file Transform.class.php.

◆ fromInt32LE()

static Transform::fromInt32LE (   $value)
static

Returns little-endian ordered binary data as signed 32-bit integer.

Parameters
string$valueThe binary data string.
Returns
integer

Definition at line 177 of file Transform.class.php.

◆ fromInt64BE()

static Transform::fromInt64BE (   $value)
static

Returns big-endian ordered binary data as 64-bit float. PHP does not support 64-bit integers as the long integer is of 32-bits but using aritmetic operations it is implicitly converted into floating point which is of 64-bits long.

Parameters
string$valueThe binary data string.
Returns
integer

Definition at line 127 of file Transform.class.php.

◆ fromInt64LE()

static Transform::fromInt64LE (   $value)
static

Returns little-endian ordered binary data as 64-bit float. PHP does not support 64-bit integers as the long integer is of 32-bits but using aritmetic operations it is implicitly converted into floating point which is of 64-bits long.

Parameters
string$valueThe binary data string.
Returns
integer

Definition at line 100 of file Transform.class.php.

◆ fromInt8()

static Transform::fromInt8 (   $value)
static

Returns binary data as 8-bit integer.

Parameters
string$valueThe binary data string.
Returns
integer

Definition at line 424 of file Transform.class.php.

◆ fromLHex()

static Transform::fromLHex (   $value)
static

Returns binary data as hexadecimal string having low nibble first.

Parameters
string$valueThe binary data string.
Returns
string

Definition at line 670 of file Transform.class.php.

◆ fromString16()

static Transform::fromString16 (   $value,
$order = false,
  $trimOrder = false 
)
static

Returns binary data as multibyte Unicode string. Removes terminating zero.

The byte order is possibly determined from the byte order mark included in the binary data string. The order parameter is updated if the BOM is found.

Parameters
string$valueThe binary data string.
integer$orderThe endianess of the string.
integer$trimOrderWhether to remove the byte order mark from the string.
Returns
string

Definition at line 610 of file Transform.class.php.

◆ fromString8()

static Transform::fromString8 (   $value)
static

Returns binary data as string. Removes terminating zero.

Parameters
string$valueThe binary data string.
Returns
string

Definition at line 557 of file Transform.class.php.

◆ fromUInt16BE()

static Transform::fromUInt16BE (   $value)
static

Returns big-endian ordered binary data as unsigned 16-bit integer.

Parameters
string$valueThe binary data string.
Returns
integer

Definition at line 402 of file Transform.class.php.

◆ fromUInt16LE()

static Transform::fromUInt16LE (   $value)
static

Returns little-endian ordered binary data as unsigned 16-bit integer.

Parameters
string$valueThe binary data string.
Returns
integer

Definition at line 380 of file Transform.class.php.

◆ fromUInt32BE()

static Transform::fromUInt32BE (   $value)
static

Returns big-endian ordered binary data as unsigned 32-bit integer.

Parameters
string$valueThe binary data string.
Returns
integer

Definition at line 258 of file Transform.class.php.

◆ fromUInt32LE()

static Transform::fromUInt32LE (   $value)
static

Returns little-endian ordered binary data as unsigned 32-bit integer.

Parameters
string$valueThe binary data string.
Returns
integer

Definition at line 230 of file Transform.class.php.

◆ fromUInt8()

static Transform::fromUInt8 (   $value)
static

Returns binary data as an unsigned 8-bit integer.

Parameters
string$valueThe binary data string.
Returns
integer

Definition at line 447 of file Transform.class.php.

◆ isBigEndian()

static Transform::isBigEndian ( )
static

Returns whether the current machine endian order is big endian.

Returns
boolean

Definition at line 75 of file Transform.class.php.

◆ isLittleEndian()

static Transform::isLittleEndian ( )
static

Returns whether the current machine endian order is little endian.

Returns
boolean

Definition at line 65 of file Transform.class.php.

◆ toFloat()

static Transform::toFloat (   $value)
static

Returns a floating point number as machine endian ordered binary data.

Parameters
float$valueThe input value.
Returns
string

Definition at line 459 of file Transform.class.php.

◆ toFloatBE()

static Transform::toFloatBE (   $value)
static

Returns a floating point number as big-endian ordered binary data.

Parameters
float$valueThe input value.
Returns
string

Definition at line 510 of file Transform.class.php.

◆ toFloatLE()

static Transform::toFloatLE (   $value)
static

Returns a floating point number as little-endian ordered binary data.

Parameters
float$valueThe input value.
Returns
string

Definition at line 482 of file Transform.class.php.

◆ toGUID()

static Transform::toGUID (   $value)
static

Returns big-endian ordered hexadecimal GUID string as little-endian ordered binary data string.

Parameters
string$valueThe input value.
Returns
string

Definition at line 683 of file Transform.class.php.

◆ toHHex()

static Transform::toHHex (   $value)
static

Returns hexadecimal string having high nibble first as binary data.

Parameters
string$valueThe input value.
Returns
string

Definition at line 636 of file Transform.class.php.

◆ toInt16()

static Transform::toInt16 (   $value)
static

Returns signed 16-bit integer as machine endian ordered binary data.

Parameters
integer$valueThe input value.
Returns
string

Definition at line 275 of file Transform.class.php.

◆ toInt16BE()

static Transform::toInt16BE (   $value)
static

Returns signed 16-bit integer as big-endian ordered binary data.

Parameters
integer$valueThe input value.
Returns
string

Definition at line 326 of file Transform.class.php.

◆ toInt16LE()

static Transform::toInt16LE (   $value)
static

Returns signed 16-bit integer as little-endian ordered binary data.

Parameters
integer$valueThe input value.
Returns
string

Definition at line 298 of file Transform.class.php.

◆ toInt32()

static Transform::toInt32 (   $value)
static

Returns signed 32-bit integer as machine-endian ordered binary data.

Parameters
integer$valueThe input value.
Returns
string

Definition at line 140 of file Transform.class.php.

◆ toInt32BE()

static Transform::toInt32BE (   $value)
static

Returns signed 32-bit integer as big-endian ordered binary data.

Parameters
integer$valueThe input value.
Returns
string

Definition at line 191 of file Transform.class.php.

◆ toInt32LE()

static Transform::toInt32LE (   $value)
static

Returns signed 32-bit integer as little-endian ordered binary data.

Parameters
integer$valueThe input value.
Returns
string

Definition at line 163 of file Transform.class.php.

◆ toInt64BE()

static Transform::toInt64BE (   $value)
static

Returns 64-bit float as big-endian ordered binary data string.

Parameters
integer$valueThe input value.
Returns
string

Definition at line 113 of file Transform.class.php.

◆ toInt64LE()

static Transform::toInt64LE (   $value)
static

Returns 64-bit float as little-endian ordered binary data string.

Parameters
integer$valueThe input value.
Returns
string

Definition at line 86 of file Transform.class.php.

◆ toInt8()

static Transform::toInt8 (   $value)
static

Returns an 8-bit integer as binary data.

Parameters
integer$valueThe input value.
Returns
integer

Definition at line 413 of file Transform.class.php.

◆ toLHex()

static Transform::toLHex (   $value)
static

Returns hexadecimal string having low nibble first as binary data.

Parameters
string$valueThe input value.
Returns
string

Definition at line 659 of file Transform.class.php.

◆ toString16()

static Transform::toString16 (   $value,
  $order = false,
  $length = false,
  $padding = "\0" 
)
static

Returns the multibyte string as binary data with given byte order mark (BOM) and padded to given length with zeros. Length is given in unicode characters so each character adds two zeros to the string. If length is smaller than the length of the string, it is considered as the length of the padding.

If byte order mark is false no mark is inserted to the binary data.

Parameters
string$valueThe input value.
integer$orderThe byte order of the binary data string.
integer$lengthThe length to which to pad the value.
string$paddingThe padding character.
Returns
string

Definition at line 578 of file Transform.class.php.

◆ toString8()

static Transform::toString8 (   $value,
  $length = false,
  $padding = "\0" 
)
static

Returns string as binary data padded to given length with zeros. If length is smaller than the length of the string, it is considered as the length of the padding.

Parameters
string$valueThe input value.
integer$lengthThe length to which to pad the value.
string$paddingThe padding character.
Returns
string

Definition at line 542 of file Transform.class.php.

◆ toUInt16BE()

static Transform::toUInt16BE (   $value)
static

Returns unsigned 16-bit integer as big-endian ordered binary data.

Parameters
integer$valueThe input value.
Returns
string

Definition at line 391 of file Transform.class.php.

◆ toUInt16LE()

static Transform::toUInt16LE (   $value)
static

Returns unsigned 16-bit integer as little-endian ordered binary data.

Parameters
integer$valueThe input value.
Returns
string

Definition at line 369 of file Transform.class.php.

◆ toUInt32BE()

static Transform::toUInt32BE (   $value)
static

Returns unsigned 32-bit integer as big-endian ordered binary data.

Parameters
integer$valueThe input value.
Returns
string

Definition at line 247 of file Transform.class.php.

◆ toUInt32LE()

static Transform::toUInt32LE (   $value)
static

Returns unsigned 32-bit integer as little-endian ordered binary data.

Parameters
integer$valueThe input value.
Returns
string

Definition at line 219 of file Transform.class.php.

◆ toUInt8()

static Transform::toUInt8 (   $value)
static

Returns an unsigned 8-bit integer as binary data.

Parameters
integer$valueThe input value.
Returns
integer

Definition at line 436 of file Transform.class.php.

Member Data Documentation

◆ BIG_ENDIAN_ORDER

const Transform::BIG_ENDIAN_ORDER = 2

Definition at line 53 of file Transform.class.php.

◆ LITTLE_ENDIAN_ORDER

const Transform::LITTLE_ENDIAN_ORDER = 1

Definition at line 52 of file Transform.class.php.

◆ MACHINE_ENDIAN_ORDER

const Transform::MACHINE_ENDIAN_ORDER = 0

Definition at line 51 of file Transform.class.php.


The documentation for this class was generated from the following file: