leszek          Fri Jun 14 22:00:47 2002 EDT

  Added files:                 
    /phpdoc-pl/reference/datetime/functions     gmstrftime.xml 
  Log:
  [qrak] Datetime upload
  

Index: phpdoc-pl/reference/datetime/functions/gmstrftime.xml
+++ phpdoc-pl/reference/datetime/functions/gmstrftime.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.1 Maintainer: Qrak Status: ready -->
<!-- $Revision: 1.1 $ -->
<!-- splitted from ./en/functions/datetime.xml, last change in rev 1.2 -->
  <refentry id="function.gmstrftime">
   <refnamediv>
    <refname>gmstrftime</refname>
    <refpurpose>
     Formatuje czas/datę ze strefy GMT/CUT zgodnie z lokalizacją
    </refpurpose>
   </refnamediv>
   <refsect1>
    <title>Opis</title>
     <methodsynopsis>
      <type>string</type><methodname>gmstrftime</methodname>
      <methodparam><type>string</type><parameter>format</parameter></methodparam>
      <methodparam
      choice="opt"><type>int</type><parameter>znacznik_czasu</parameter></methodparam>
     </methodsynopsis>
    <para>
     Zachowuje się identycznie jak <function>strftime</function> z tym
     wyjątkiem, że zwracany jest czas strefy Greenwich (Greenwich Mean Time -
     GMT). Na przykład, uruchomiona we Wschodnim Czasie Standardowym
     (GMT -0500) pierwsza linia poniżej wyświetla "Dec 31 1998 20:00:00",
     podczas gdy druga "Jan 01 1999 01:00:00".
     <example>
      <title>przykład <function>gmstrftime</function></title>
      <programlisting role="php">
<![CDATA[
setlocale ('LC_TIME', 'en_US');
echo strftime ("%b %d %Y %H:%M:%S", mktime (20,0,0,12,31,98))."\n";
echo gmstrftime ("%b %d %Y %H:%M:%S", mktime (20,0,0,12,31,98))."\n";
]]>
      </programlisting>
     </example>
    </para>
    <para>
     Patrz także <function>strftime</function>.
    </para>
   </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
-->


Reply via email to