Skip to content

Instantly share code, notes, and snippets.

View Aleksandr-ru's full-sized avatar
🚀
To infinity... and beyond

Aleksandr.ru Aleksandr-ru

🚀
To infinity... and beyond
View GitHub Profile
<?php
/**
* Проверяет наличие строковых ключей в массиве
* @param array $arr
* @return bool
* @link http://stackoverflow.com/questions/173400/how-to-check-if-php-array-is-associative-or-sequential
*/
function is_assoc($arr)
{
if(!is_array($arr)) {