Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
api.meumercado.app
/
vendor
/
paypal
/
rest-api-sdk-php
/
lib
/
PayPal
/
Common
/
Editing: ArrayUtil.php
<?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; } }
Save
Cancel