Method |
Description |
|
describeArrayDifference ( array $first, mixed $second, boolean $identical ) : string |
Creates a human readable description of the difference between two arrays. |
|
describeBooleanDifference ( boolean $first, mixed $second, boolean $identical ) : string |
Creates a human readable description of the difference between a boolean and another
variable. |
|
describeFloatDifference ( float $first, mixed $second, boolean $identical ) : string |
Creates a human readable description of the difference between
two floating point numbers. |
|
describeGenericDifference ( null $first, mixed $second ) : string |
Creates a human readable description of the difference between two variables. |
|
describeIntegerDifference ( integer $first, mixed $second, boolean $identical ) : string |
Creates a human readable description of the difference between
an integer and another variable. |
|
describeNullDifference ( null $first, mixed $second, boolean $identical ) : string |
Creates a human readable description of the difference between a null and another variable. |
|
describeObjectDifference ( object $first, mixed $second, boolean $identical ) : string |
Creates a human readable description of the difference between two objects. |
|
describeResourceDifference ( resource $first, mixed $second, boolean $identical ) : string |
Creates a human readable description of the difference between
a resource and another variable. |
|
describeStringDifference ( string $first, mixed $second, boolean $identical ) : string |
Creates a human readable description of the difference between
a string and another variable. |
|
getMembers ( object $object ) : array |
Get all members of an object including private and protected ones. |
|
isMatchingKeys ( array $first, array $second, boolean $identical ) : boolean |
Compares two arrays to see if their key lists match. |
|
isTypeMatch ( mixed $first, mixed $second ) : boolean |
Tests to see if types match. |
|
stringDiffersAt ( string $first, string $second ) : integer |
Find the first character position that differs in two strings by binary chop. |
|