Microweber\Utils\Adapters\Http\Curl::is_multidim_array PHP Method

is_multidim_array() private method

Starts curl and sets headers and returns the data in a string
private is_multidim_array ( $myarray )
    private function is_multidim_array($myarray)
    {
        if (count($myarray) == count($myarray, COUNT_RECURSIVE)) {
            return false;
        } else {
            return true;
        }
    }