llms_get_country_address_info( string $code )

Retrieve locale information for a specific country


Parameters Parameters

$code

(string) (Required) Country code.


Top ↑

Return Return

(array)


Top ↑

Source Source

File: includes/functions/llms-functions-locale.php

function llms_get_country_address_info( $code ) {
	$all = llms_get_countries_address_info();
	return isset( $all[ $code ] ) ? $all[ $code ] : array();
}


Top ↑

Changelog Changelog

Changelog
Version Description
5.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.