for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Oryzone PHPoAuthUserData package <https://github.com/Oryzone/PHPoAuthUserData>.
*
* (c) Oryzone, developed by Luciano Mammino <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace OAuth\UserData\Utils;
/**
* Class ArrayUtils
* @package OAuth\Utils
class ArrayUtils
{
* Utility method to convert an object to an array
* @param object $object
* @return array
public static function objectToArray($object)
if (!is_object($object) && !is_array($object)) {
return $object;
}
return array_map('self::objectToArray', (array) $object);
* Utility method that allow to remove a list of keys from a given array.
* This method does not modify the passed array but builds a new one.
* @param array $array
* @param string[] $keys
public static function removeKeys($array, $keys)
return array_diff_key($array, array_flip($keys));