2010-03-28 22:10:10 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-07-11 07:25:11 +00:00
|
|
|
<!-- $Revision$ -->
|
2007-06-20 22:25:43 +00:00
|
|
|
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.ibase-timefmt">
|
2007-06-16 21:52:41 +00:00
|
|
|
<refnamediv>
|
|
|
|
<refname>ibase_timefmt</refname>
|
|
|
|
<refpurpose>Sets the format of timestamp, date and time type columns returned from queries</refpurpose>
|
|
|
|
</refnamediv>
|
2007-06-16 21:54:21 +00:00
|
|
|
|
|
|
|
<refsect1 role="description">
|
|
|
|
&reftitle.description;
|
2007-06-16 21:52:41 +00:00
|
|
|
<methodsynopsis>
|
2007-06-16 21:54:21 +00:00
|
|
|
<type>bool</type><methodname>ibase_timefmt</methodname>
|
2007-06-16 21:52:41 +00:00
|
|
|
<methodparam><type>string</type><parameter>format</parameter></methodparam>
|
2011-05-19 13:05:46 +00:00
|
|
|
<methodparam choice="opt"><type>int</type><parameter>columntype</parameter><initializer>IBASE_TIMESTAMP</initializer></methodparam>
|
2007-06-16 21:52:41 +00:00
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
2007-06-16 21:54:21 +00:00
|
|
|
Sets the format of timestamp, date or time type columns returned from
|
|
|
|
queries.
|
2007-06-16 21:52:41 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
2007-06-16 21:54:21 +00:00
|
|
|
You can set defaults for these formats with the PHP configuration
|
|
|
|
directives <literal>ibase.timestampformat</literal>,
|
|
|
|
<literal>ibase.dateformat</literal> and
|
|
|
|
<literal>ibase.timeformat</literal>.
|
|
|
|
</para>
|
|
|
|
<note>
|
|
|
|
<para>
|
|
|
|
This function has been removed from PHP 5, use
|
|
|
|
<function>ini_set</function> instead.
|
|
|
|
</para>
|
|
|
|
</note>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="parameters">
|
|
|
|
&reftitle.parameters;
|
|
|
|
<para>
|
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>format</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
Internally, the columns are formatted by c-function strftime(), so
|
|
|
|
refer to its documentation regarding to the format of the string.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>columntype</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
<parameter>columntype</parameter> is one of the constants
|
|
|
|
<constant>IBASE_TIMESTAMP</constant>, <constant>IBASE_DATE</constant>
|
|
|
|
and <constant>IBASE_TIME</constant>. If omitted, defaults to
|
|
|
|
<constant>IBASE_TIMESTAMP</constant> for backwards compatibility.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="returnvalues">
|
|
|
|
&reftitle.returnvalues;
|
|
|
|
<para>
|
|
|
|
&return.success;
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="examples">
|
|
|
|
&reftitle.examples;
|
|
|
|
<para>
|
|
|
|
<example>
|
|
|
|
<title><function>ibase_timefmt</function> example</title>
|
2007-06-16 21:52:41 +00:00
|
|
|
<programlisting role="php">
|
2003-09-02 09:48:35 +00:00
|
|
|
<![CDATA[
|
|
|
|
<?php
|
2007-06-16 21:54:21 +00:00
|
|
|
/* InterBase 6 TIME-type columns will be returned in
|
|
|
|
* the form '05 hours 37 minutes'. */
|
|
|
|
ibase_timefmt("%H hours %M minutes", IBASE_TIME);
|
2003-09-02 09:48:35 +00:00
|
|
|
?>
|
|
|
|
]]>
|
2007-06-16 21:52:41 +00:00
|
|
|
</programlisting>
|
2007-06-16 21:54:21 +00:00
|
|
|
</example>
|
2007-06-16 21:52:41 +00:00
|
|
|
</para>
|
|
|
|
</refsect1>
|
2007-06-16 21:54:21 +00:00
|
|
|
|
2007-06-16 21:52:41 +00:00
|
|
|
</refentry>
|
2002-04-15 00:12:54 +00:00
|
|
|
|
|
|
|
<!-- 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
|
2009-09-25 07:04:39 +00:00
|
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
2002-04-15 00:12:54 +00:00
|
|
|
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
|
|
|
|
-->
|