From 384f625642a37c7d0c7e934108fadb288baa50e0 Mon Sep 17 00:00:00 2001 From: Chris Wright Date: Wed, 31 Aug 2016 10:30:13 +0000 Subject: [PATCH] Document IntlChar::NO_NUMERIC_VALUE git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@339959 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/intl/intlchar.xml | 13 +++++++++++++ reference/intl/intlchar/getnumericvalue.xml | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/reference/intl/intlchar.xml b/reference/intl/intlchar.xml index 5021151da4..18230fe82e 100644 --- a/reference/intl/intlchar.xml +++ b/reference/intl/intlchar.xml @@ -54,6 +54,12 @@ IntlChar::CODEPOINT_MAX 1114111 + + const + float + IntlChar::NO_NUMERIC_VALUE + -123456789 + const integer @@ -3670,6 +3676,13 @@ + + IntlChar::NO_NUMERIC_VALUE + + Special value that is returned by IntlChar::getNumericValue when no numeric value is defined for a code point. + + + IntlChar::PROPERTY_ALPHABETIC diff --git a/reference/intl/intlchar/getnumericvalue.xml b/reference/intl/intlchar/getnumericvalue.xml index 8a4e3b93f8..9c314a63f9 100644 --- a/reference/intl/intlchar/getnumericvalue.xml +++ b/reference/intl/intlchar/getnumericvalue.xml @@ -18,7 +18,7 @@ For characters without any numeric values in the Unicode Character Database, this function will return - float(-123456789). + IntlChar::NO_NUMERIC_VALUE. @@ -38,7 +38,7 @@ &reftitle.returnvalues; Numeric value of codepoint, - or float(-123456789) if none is defined. + or IntlChar::NO_NUMERIC_VALUE if none is defined.