projects
/
WP-Plugins
/
glm-member-db-registrations.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
a93fe19e00819c3c855e41393de7c34edab783c1
[WP-Plugins/glm-member-db-registrations.git]
/
1
<?php
2
namespace PayPal\Common;
3
class PPArrayUtil {
4
5
/**
6
*
7
* @param array $arr
8
* @return true if $arr is an associative array
9
*/
10
public static function isAssocArray(array $arr) {
11
foreach($arr as $k => $v) {
12
if(is_int($k)) {
13
return false;
14
}
15
}
16
return true;
17
}
18
}