svn: /phpdoc/ja/trunk/reference/ev/ periodic-modes.xml
[email protected] (Yoshinari Takaoka)
| Newsgroups | php.doc.ja |
|---|---|
| Message-ID | <[email protected]> |
mumumu Sat, 07 Mar 2020 22:02:55 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=349347
Log:
Fix example, add missing ')'
Provided by an anonymous user.
Changed paths:
U phpdoc/ja/trunk/reference/ev/periodic-modes.xml
Modified: phpdoc/ja/trunk/reference/ev/periodic-modes.xml
===================================================================
--- phpdoc/ja/trunk/reference/ev/periodic-modes.xml 2020-03-07 21:59:53 UTC (rev 349346)
+++ phpdoc/ja/trunk/reference/ev/periodic-modes.xml 2020-03-07 22:02:55 UTC (rev 349347)
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 333548 Maintainer: takagi Status: ready -->
+<!-- EN-Revision: 349340 Maintainer: takagi Status: ready -->
+<!-- Credits: mumumu -->
<chapter xml:id="ev.periodic-modes" xmlns:phpdoc="http://php.net/ns/phpdoc" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Periodic ウォッチャーの操作モード</title>
<para>
@@ -39,7 +40,7 @@
<?php
$hourly = EvPeriodic(0, 3600, NULL, function () {
echo "once per hour\n";
-};
+});
?>
]]>
</programlisting>