Файл: concrete5.7.5.6/concrete/vendor/oryzone/oauth-user-data/src/OAuth/UserData/Utils/ArrayUtils.php
Строк: 30
<?php
/*
* This file is part of the Oryzone PHPoAuthUserData package <https://github.com/Oryzone/PHPoAuthUserData>.
*
* (c) Oryzone, developed by Luciano Mammino <lmammino@oryzone.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace OAuthUserDataUtils;
/**
* Class ArrayUtils
* @package OAuthUtils
*/
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
* @return array
*/
public static function removeKeys($array, $keys)
{
return array_diff_key($array, array_flip($keys));
}
}