mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-19 02:18:56 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@135201 c90b9560-bf6c-de11-be94-00142212c4b1
72 lines
2.2 KiB
XML
72 lines
2.2 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.4 $ -->
|
|
<!-- splitted from ./en/functions/pgsql.xml, last change in rev 1.2 -->
|
|
<refentry id="function.pg-field-is-null">
|
|
<refnamediv>
|
|
<refname>pg_field_is_null</refname>
|
|
<refpurpose>Test if a field is &null;</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Description</title>
|
|
<methodsynopsis>
|
|
<type>int</type><methodname>pg_field_is_null</methodname>
|
|
<methodparam><type>resource</type><parameter>result</parameter></methodparam>
|
|
<methodparam><type>int</type><parameter>row</parameter></methodparam>
|
|
<methodparam><type>mixed</type><parameter>field</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
<function>pg_field_is_null</function> tests if a field is &null; or
|
|
not. It returns 1 if the field in the given row is &null;. It
|
|
returns 0 if the field in the given row is NOT &null;. Field can
|
|
be specified as column index (number) or fieldname (string). Row
|
|
numbering starts at 0.
|
|
</para>
|
|
<para>
|
|
<example>
|
|
<title><function>pg_field_is_null</function> example</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$dbconn = pg_connect("dbname=publisher") or die ("Could not connect");
|
|
$res = pg_query($dbconn, "select * from authors where author = 'Orwell'");
|
|
if ($res) {
|
|
if (pg_field_is_null($res, 0, "year") == 1) {
|
|
echo "The value of the field year is null.\n";
|
|
}
|
|
if (pg_field_is_null($res, 0, "year") == 0) {
|
|
echo "The value of the field year is not null.\n";
|
|
}
|
|
}
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
<note>
|
|
<para>
|
|
This function used to be called <literal>pg_fieldisnull()</literal>.
|
|
</para>
|
|
</note>
|
|
</refsect1>
|
|
</refentry>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"../../../../manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|