PATH:
home
/
lab2454c
/
keebchat.com
/
core
/
libs
/
paypal
/
vendor
/
paypal
/
rest-api-sdk-php
/
lib
/
PayPal
/
Common
<?php namespace PayPal\Common; /** * Class ArrayUtil * Util Class for Arrays * * @package PayPal\Common */ class ArrayUtil { /** * * @param array $arr * @return true if $arr is an associative array */ public static function isAssocArray(array $arr) { foreach ($arr as $k => $v) { if (is_int($k)) { return false; } } return true; } }
[+]
..
[-] ReflectionUtil.php
[edit]
[-] PayPalModel.php
[edit]
[-] ArrayUtil.php
[edit]
[-] PayPalResourceModel.php
[edit]
[-] PayPalUserAgent.php
[edit]