mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-19 14:22:43 +08:00
68 lines
3.7 KiB
HTML
68 lines
3.7 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<title>Get the last error code</title>
|
|
</head>
|
|
<body class="docs"><div id="layout">
|
|
<div id="layout-content"><div id="function.intl-get-error-code" class="refentry">
|
|
<div class="refnamediv">
|
|
<h1 class="refname">intl_get_error_code</h1>
|
|
<p class="verinfo">(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0)</p><p class="refpurpose"><span class="refname">intl_get_error_code</span> — <span class="dc-title">Get the last error code</span></p>
|
|
|
|
</div>
|
|
|
|
<div class="refsect1 description" id="refsect1-function.intl-get-error-code-description">
|
|
<h3 class="title">说明</h3>
|
|
<div class="methodsynopsis dc-description">
|
|
|
|
<span class="methodname"><strong>intl_get_error_code</strong></span>
|
|
( <span class="methodparam">void</span>
|
|
) : <span class="type">int</span></div>
|
|
|
|
<p class="para rdfs-comment">
|
|
Useful to handle errors occurred in static methods when there's no object to
|
|
get error code from.
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 returnvalues" id="refsect1-function.intl-get-error-code-returnvalues">
|
|
<h3 class="title">返回值</h3>
|
|
<p class="para">
|
|
Error code returned by the last API function call.
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 examples" id="refsect1-function.intl-get-error-code-examples">
|
|
<h3 class="title">范例</h3>
|
|
<p class="para">
|
|
<div class="example" id="example-3163">
|
|
<p><strong>Example #1 <span class="function"><strong>intl_get_error_code()</strong></span> example</strong></p>
|
|
<div class="example-contents">
|
|
<div class="phpcode"><pre><span style="color: #000000">
|
|
<span style="color: #0000BB"><?php<br />$coll </span><span style="color: #007700">= </span><span style="color: #0000BB">collator_create</span><span style="color: #007700">( </span><span style="color: #DD0000">'<bad_param>' </span><span style="color: #007700">);<br />if( !</span><span style="color: #0000BB">$coll </span><span style="color: #007700">) {<br /> </span><span style="color: #0000BB">handle_error</span><span style="color: #007700">( </span><span style="color: #0000BB">intl_get_error_code</span><span style="color: #007700">() );<br />}<br /></span><span style="color: #0000BB">?></span>
|
|
</span>
|
|
</pre></div>
|
|
</div>
|
|
|
|
</div>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 seealso" id="refsect1-function.intl-get-error-code-seealso">
|
|
<h3 class="title">参见</h3>
|
|
<p class="para">
|
|
<ul class="simplelist">
|
|
<li class="member"><span class="function"><a href="intl_is_failure.html" class="function" rel="rdfs-seeAlso">intl_is_failure()</a> - Check whether the given error code indicates failure</span></li>
|
|
<li class="member"><span class="function"><a href="intl_error_name.html" class="function" rel="rdfs-seeAlso">intl_error_name()</a> - Get symbolic name for a given error code</span></li>
|
|
<li class="member"><span class="function"><a href="intl_get_error_message.html" class="function" rel="rdfs-seeAlso">intl_get_error_message()</a> - Get description of the last error</span></li>
|
|
<li class="member"><span class="function"><a href="collator.geterrorcode.html" class="function" rel="rdfs-seeAlso">collator_get_error_code()</a> - Get collator's last error code</span></li>
|
|
<li class="member"><span class="function"><a href="numberformatter.geterrorcode.html" class="function" rel="rdfs-seeAlso">numfmt_get_error_code()</a> - Get formatter's last error code</span></li>
|
|
</ul>
|
|
</p>
|
|
</div>
|
|
|
|
</div></div></div></body></html> |