CakeFest 2024: The Official CakePHP Conference

Collator::getErrorCode

collator_get_error_code

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

Collator::getErrorCode -- collator_get_error_codecollator の直近のエラーコードを取得する

説明

オブジェクト指向型

public Collator::getErrorCode(): int|false

手続き型

collator_get_error_code(Collator $object): int|false

パラメータ

object

Collator オブジェクト。

戻り値

直近の Collator API 関数コールが返したエラーコードを返します。 失敗した場合に false を返します

例1 collator_get_error_code() の例

<?php
$coll
= collator_create( 'en_US' );
if(
collator_get_attribute( $coll, Collator::FRENCH_COLLATION ) === false )
handle_error( collator_get_error_code() );
?>

参考

add a note

User Contributed Notes

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