Function HistoricCountries->getByNumericCode

Definitions

sources/isocodes/vendor/sokil/php-isocodes/src/Database/HistoricCountries.php

  • Using int code argument is deprecated due to it can be with leading 0 (e.g. '042').Please, use numeric strings.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No
  • Returns: Country

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$code string|int No No required parameter N/A N/A $code

Returns

  • Type: Country|null
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Using int code argument is deprecated due to it can be with leading 0 (e.g. '042').Please, use numeric strings.
 *
 * @param  string|int $code $code
 * @return Country|null
 */

public function getByNumericCode($code) : ?Country