in case anyone cares, here is my solution so far, please comment if you feel the need.
function myArrayDiff($thing1, $thing2)
{
$diff = array();
while (list($key, $val) = each($thing1))
{
if ((string)$val !== (string)$thing2[$key])
$diff[$key] = $val;
}
return $diff;
}
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

