cvs: phpdoc-hu /reference/filesystem/functions filemtime.xml
[email protected] ("Lajos Cseppent?")
| Newsgroups | php.doc.hu |
|---|---|
| Message-ID | <cvschappy1170574984@cvsserver> |
chappy Sun Feb 4 07:43:04 2007 UTC
Added files:
/phpdoc-hu/reference/filesystem/functions filemtime.xml
Log:
http://cvs.php.net/viewvc.cgi/phpdoc-hu/reference/filesystem/functions/filemtime.xml?view=markup&rev=1.1
Index: phpdoc-hu/reference/filesystem/functions/filemtime.xml
+++ phpdoc-hu/reference/filesystem/functions/filemtime.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.6 Maintainer: chappy Status: ready -->
<!-- splitted from ./en/functions/filesystem.xml, last change in rev 1.2 -->
<refentry id="function.filemtime">
<refnamediv>
<refname>filemtime</refname>
<refpurpose>Kinyeri a fájl utolsó módosítási idõpontját</refpurpose>
</refnamediv>
<refsect1>
<title>Leírás</title>
<methodsynopsis>
<type>int</type><methodname>filemtime</methodname>
<methodparam><type>string</type><parameter>filename</parameter></methodparam>
</methodsynopsis>
<para>
Visszaadja a fájl utolsó módosításának az idõpontját, vagy &false;-szal tér vissza
hiba esetén. Az idõt Unix idõbélyegként adja vissza,
ami alkalmas a <function>date</function> függvénnyel való feldolgozásra.
</para>
¬e.clearstatcache;
&tip.fopen-wrapper.stat;
<para>
Ez a függvény visszaadja az idõpontot, amikor
adatblokkokat ítrtak a fájlba; ez az az idõpont, amikor
a fájl tartalma utoljára megváltozott.
</para>
<para>
<example>
<title><function>filemtime</function> példa</title>
<programlisting role="php">
<![CDATA[
<?php
// kimenetre példa: somefile.txt was last modified: December 29 2002 22:16:23.
$filename = 'somefile.txt';
if (file_exists($filename)) {
echo "$filename was last modified: " . date ("F d Y H:i:s.", filemtime($filename));
}
?>
]]>
</programlisting>
</example>
</para>
<para>
Lásd még: <function>filectime</function>, <function>stat</function>,
<function>touch</function> és <function>getlastmod</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
-->