reference/oci8/functions/oci-field-is-null.xml
5e41012cfdf8f2eff5fa56de446c7656afac536c
...
...
@@ -11,10 +11,10 @@
11
11
<methodsynopsis>
12
12
<type>bool</type><methodname>oci_field_is_null</methodname>
13
13
<methodparam><type>resource</type><parameter>statement</parameter></methodparam>
14
-
<methodparam><type>mixed</type><parameter>field</parameter></methodparam>
14
+
<methodparam><type class="union"><type>string</type><type>int</type></type><parameter>column</parameter></methodparam>
15
15
</methodsynopsis>
16
16
<para>
17
-
Checks if the given <parameter>field</parameter> from the current row of
17
+
Checks if the given <parameter>column</parameter> from the current row of
18
18
<parameter>statement</parameter> is &null;.
19
19
</para>
20
20
</refsect1>
...
...
@@ -32,7 +32,7 @@
32
32
</listitem>
33
33
</varlistentry>
34
34
<varlistentry>
35
-
<term><parameter>field</parameter></term>
35
+
<term><parameter>column</parameter></term>
36
36
<listitem>
37
37
<para>
38
38
Can be the field's index (1-based) or name.
...
...
@@ -46,7 +46,7 @@
46
46
<refsect1 role="returnvalues">
47
47
&reftitle.returnvalues;
48
48
<para>
49
-
Returns &true; if <parameter>field</parameter> is &null;, &false; otherwise.
49
+
Returns &true; if <parameter>column</parameter> is &null;, &false; otherwise.
50
50
</para>
51
51
</refsect1>
52
52

...
...
@@ -93,21 +93,7 @@ oci_close($conn);
93
93
</example>
94
94
</para>
95
95
</refsect1>
96
-

97
-
<refsect1 role="notes">
98
-
&reftitle.notes;
99
-
<note>
100
-
<para>
101
-
In PHP versions before 5.0.0 you must use <function>ocicolumnisnull</function> instead.
102
-
This name still can be used, it was left as alias of
103
-
<function>oci_field_is_null</function> for downwards compatability.
104
-
This, however, is deprecated and not recommended.
105
-
</para>
106
-
</note>
107
-
</refsect1>
108
-

109
96
</refentry>
110
-

111
97
<!-- Keep this comment at the end of the file
112
98
Local variables:
113
99
mode: sgml
114
100