(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0)
intl_get_error_code — Son hatanın kodunu döndürür
Duruk yöntemlerde hata oluştuğunda hatanın alınacağı bir nesne yoksa hata kodunu öğrenmek için yararlıdır.
Bu işlevin bağımsız değişkeni yoktur.
Son API işlevi çağrısından dönen hata kodu.
Örnek 1 - intl_get_error_code() örneği
<?php
$coll = collator_create( '<bad_param>' );
if( !$coll ) {
handle_error( intl_get_error_code() );
}
?>