function.pg-field-type.html

来自「php的帮助文档,涉及到PHP的案例和基本语法,以及实际应用内容」· HTML 代码 · 共 141 行

HTML
141
字号
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html> <head>  <title>Returns the type name for the corresponding field number</title>  <meta http-equiv="content-type" content="text/html; charset=UTF-8"> </head> <body><div style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="function.pg-field-type-oid.html">pg_field_type_oid</a></div> <div class="next" style="text-align: right; float: right;"><a href="function.pg-free-result.html">pg_free_result</a></div> <div class="up"><a href="ref.pgsql.html">PostgreSQL Functions</a></div> <div class="home"><a href="index.html">PHP Manual</a></div></div><hr /><div id="function.pg-field-type" class="refentry"> <div class="refnamediv">  <h1 class="refname">pg_field_type</h1>   <p class="verinfo">(PHP 4 &gt;= 4.2.0, PHP 5)</p><p class="refpurpose"><span class="refname">pg_field_type</span> &mdash; <span class="dc-title">   Returns the type name for the corresponding field number  </span></p> </div> <div class="refsect1 description">  <h3 class="title">Description</h3>  <div class="methodsynopsis dc-description">   <span class="type">string</span> <span class="methodname"><b><b>pg_field_type</b></b></span>    ( <span class="methodparam"><span class="type">resource</span> <tt class="parameter">$result</tt></span>   , <span class="methodparam"><span class="type">int</span> <tt class="parameter">$field_number</tt></span>   )</div>  <p class="para rdfs-comment">   <b>pg_field_type()</b> returns a string containing the   base type name of the given <i><tt class="parameter">field_number</tt></i> in the   given PostgreSQL <i><tt class="parameter">result</tt></i> resource.  </p>  <blockquote><p><b class="note">Note</b>:        If the field uses a PostgreSQL domain (rather than a basic type), it is    the name of the domain&#039;s underlying type that is returned, rather than the     name of the domain itself.   <br />  </p></blockquote>  <blockquote><p><b class="note">Note</b>:        This function used to be called <b>pg_fieldtype()</b>.   <br />  </p></blockquote> </div> <div class="refsect1 parameters">  <h3 class="title">Parameters</h3>  <p class="para">   <dl>    <dt>     <span class="term"><i><tt class="parameter">result</tt></i></span>     <dd>      <p class="para">       PostgreSQL query result resource, returned by <a href="function.pg-query.html" class="function">pg_query()</a>,       <a href="function.pg-query-params.html" class="function">pg_query_params()</a> or <a href="function.pg-execute.html" class="function">pg_execute()</a>       (among others).      </p>     </dd>    </dt>    <dt>     <span class="term"><i><tt class="parameter">field_number</tt></i></span>      <dd>       <p class="para">        Field number, starting from 0.       </p>     </dd>    </dt>   </dl>  </p> </div> <div class="refsect1 returnvalues">  <h3 class="title">Return Values</h3>  <p class="para">   A <a href="language.types.string.html" class="type string">string</a> containing the base name of the field&#039;s type, or <b><tt>FALSE</tt></b>   on error.  </p> </div>  <div class="refsect1 examples">  <h3 class="title">Examples</h3>  <p class="para">   <div class="example">    <p><b>Example #1 Getting information about fields</b></p>    <div class="example-contents"><div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />&nbsp;&nbsp;$dbconn&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">pg_connect</span><span style="color: #007700">(</span><span style="color: #DD0000">"dbname=publisher"</span><span style="color: #007700">)&nbsp;or&nbsp;die(</span><span style="color: #DD0000">"Could&nbsp;not&nbsp;connect"</span><span style="color: #007700">);<br /><br />&nbsp;&nbsp;</span><span style="color: #FF8000">//&nbsp;Assume&nbsp;'title'&nbsp;is&nbsp;a&nbsp;varchar&nbsp;type<br />&nbsp;&nbsp;</span><span style="color: #0000BB">$res&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">pg_query</span><span style="color: #007700">(</span><span style="color: #0000BB">$dbconn</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"select&nbsp;title&nbsp;from&nbsp;authors&nbsp;where&nbsp;author&nbsp;=&nbsp;'Orwell'"</span><span style="color: #007700">);<br /><br />&nbsp;&nbsp;echo&nbsp;</span><span style="color: #DD0000">"Title&nbsp;field&nbsp;type:&nbsp;"</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">pg_field_type</span><span style="color: #007700">(</span><span style="color: #0000BB">$res</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">0</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>    </div>    <div class="example-contents"><p>The above example will output:</p></div>    <div class="example-contents"><pre><div class="cdata"><pre>Title field type: varchar</pre></div>    </pre></div>   </div>   </p> </div>  <div class="refsect1 seealso">  <h3 class="title">See Also</h3>  <p class="para">   <ul class="simplelist">    <li class="member"><a href="function.pg-field-prtlen.html" class="function" rel="rdfs-seeAlso">pg_field_prtlen()</a></li>    <li class="member"><a href="function.pg-field-name.html" class="function" rel="rdfs-seeAlso">pg_field_name()</a></li>    <li class="member"><a href="function.pg-field-type-oid.html" class="function" rel="rdfs-seeAlso">pg_field_type_oid()</a></li>   </ul>  </p> </div></div><hr /><div style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="function.pg-field-type-oid.html">pg_field_type_oid</a></div> <div class="next" style="text-align: right; float: right;"><a href="function.pg-free-result.html">pg_free_result</a></div> <div class="up"><a href="ref.pgsql.html">PostgreSQL Functions</a></div> <div class="home"><a href="index.html">PHP Manual</a></div></div></body></html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?