Add required parameter to example

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@204356 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Matt Li 2006-01-02 08:37:24 +00:00
parent 8f92ea8d5b
commit 6f7cff7c56

View file

@ -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);