mazzanet Mon Jan 2 08:37:24 2006 UTC
Modified files:
/phpdoc/en/reference/filesystem/functions fseek.xml
Log:
Add required parameter to example
http://cvs.php.net/viewcvs.cgi/phpdoc/en/reference/filesystem/functions/fseek.xml?r1=1.10&r2=1.11&diff_format=u
Index: phpdoc/en/reference/filesystem/functions/fseek.xml
diff -u phpdoc/en/reference/filesystem/functions/fseek.xml:1.10
phpdoc/en/reference/filesystem/functions/fseek.xml:1.11
--- phpdoc/en/reference/filesystem/functions/fseek.xml:1.10 Fri Apr 29
10:46:49 2005
+++ phpdoc/en/reference/filesystem/functions/fseek.xml Mon Jan 2 08:37:24 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.10 $ -->
+<!-- $Revision: 1.11 $ -->
<!-- splitted from ./en/functions/filesystem.xml, last change in rev 1.2 -->
<refentry id="function.fseek">
<refnamediv>
@@ -44,7 +44,7 @@
<![CDATA[
<?php
-$fp = fopen('somefile.txt');
+$fp = fopen('somefile.txt', 'r');
// read some data
$data = fgets($fp, 4096);