Collator::getErrorCode

collator_get_error_code

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0)

Collator::getErrorCode -- collator_get_error_codeGet collator's last error code

Opis

Styl obiektowy

public Collator::getErrorCode ( void ) : int

Styl proceduralny

collator_get_error_code ( Collator $coll ) : int

Parametry

coll

Collator object.

Zwracane wartości

Error code returned by the last Collator API function call.

Przykłady

Przykład #1 collator_get_error_code() example

<?php
$coll 
collator_create'en_US' );
if( 
collator_get_attribute$collCollator::FRENCH_COLLATION ) === false )
        
handle_errorcollator_get_error_code() );
?>

Zobacz też:

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top