3 * base include file for SimpleTest
5 * @version $Id: compatibility.php,v 1.6 2006/01/02 22:39:23 lastcraft Exp $
9 * Static methods for compatibility between different
13 class SimpleTestCompatibility
{
16 * Creates a copy whether in PHP5 or PHP4.
17 * @param object $object Thing to copy.
18 * @return object A copy.
22 function copy($object) {
23 if (version_compare(phpversion(), '5') >= 0) {
24 eval('$copy = clone $object;');
31 * Identity test. Drops back to equality + types for PHP5
32 * objects as the === operator counts as the
33 * stronger reference constraint.
34 * @param mixed $first Test subject.
35 * @param mixed $second Comparison object.
36 * @return boolean True if identical.
40 function isIdentical($first, $second) {
41 if ($first != $second) {
44 if (version_compare(phpversion(), '5') >= 0) {
45 return SimpleTestCompatibility
::_isIdenticalType($first, $second);
47 return ($first === $second);
51 * Recursive type test.
52 * @param mixed $first Test subject.
53 * @param mixed $second Comparison object.
54 * @return boolean True if same type.
58 function _isIdenticalType($first, $second) {
59 if (gettype($first) != gettype($second)) {
62 if (is_object($first) && is_object($second)) {
63 if (get_class($first) != get_class($second)) {
66 return SimpleTestCompatibility
::_isArrayOfIdenticalTypes(
67 get_object_vars($first),
68 get_object_vars($second));
70 if (is_array($first) && is_array($second)) {
71 return SimpleTestCompatibility
::_isArrayOfIdenticalTypes($first, $second);
77 * Recursive type test for each element of an array.
78 * @param mixed $first Test subject.
79 * @param mixed $second Comparison object.
80 * @return boolean True if identical.
84 function _isArrayOfIdenticalTypes($first, $second) {
85 if (array_keys($first) != array_keys($second)) {
88 foreach (array_keys($first) as $key) {
89 $is_identical = SimpleTestCompatibility
::_isIdenticalType(
92 if (! $is_identical) {
100 * Test for two variables being aliases.
101 * @param mixed $first Test subject.
102 * @param mixed $second Comparison object.
103 * @return boolean True if same.
107 function isReference(&$first, &$second) {
108 if (version_compare(phpversion(), '5', '>=')
109 && is_object($first)) {
110 return ($first === $second);
112 if (is_object($first) && is_object($second)) {
113 $id = uniqid("test");
115 $is_ref = isset($second->$id);
120 $first = uniqid("test");
121 $is_ref = ($first === $second);
127 * Test to see if an object is a member of a
129 * @param object $object Object to test.
130 * @param string $class Root name of hiearchy.
131 * @return boolean True if class in hiearchy.
135 function isA($object, $class) {
136 if (function_exists('is_a')) {
137 return is_a($object, $class);
139 if (version_compare(phpversion(), '5') >= 0) {
140 if (! class_exists($class, false)) {
141 if (function_exists('interface_exists')) {
142 if (! interface_exists($class, false)) {
147 eval("\$is_a = \$object instanceof $class;");
150 return ((strtolower($class) == get_class($object))
151 or (is_subclass_of($object, $class)));
155 * Sets a socket timeout for each chunk.
156 * @param resource $handle Socket handle.
157 * @param integer $timeout Limit in seconds.
161 function setTimeout($handle, $timeout) {
162 if (function_exists('stream_set_timeout')) {
163 stream_set_timeout($handle, $timeout, 0);
164 } elseif (function_exists('socket_set_timeout')) {
165 socket_set_timeout($handle, $timeout, 0);
166 } elseif (function_exists('set_socket_timeout')) {
167 set_socket_timeout($handle, $timeout, 0);
172 * Gets the current stack trace topmost first.
173 * @return array List of stack frames.
177 function getStackTrace() {
178 if (function_exists('debug_backtrace')) {
179 return array_reverse(debug_backtrace());