![]() |
Documentación GVHIDRA 3.1.5
|
Métodos públicos | |
equals ($object) | |
toString () |
Class Object is the root of the class hierarchy. Every class has Object as a superclass. All objects, including arrays, implement the methods of this class.
Definición en la línea 10 del archivo Object.php.
equals | ( | $ | object | ) |
Compares the specified object with this object for equality.
public
mixed | $object |
Definición en la línea 19 del archivo Object.php.
{
return ($this === $object);
}
toString | ( | ) |
Returns a string representation of this object.
public
Definición en la línea 29 del archivo Object.php.
{
return var_export($this, TRUE);
}