Fix example comment.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@276506 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Kouber Saparev 2009-02-26 16:49:20 +00:00
parent 8bf5f1a378
commit 242fa858cb

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.35 $ -->
<!-- $Revision: 1.36 $ -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.file-get-contents">
<refnamediv>
<refname>file_get_contents</refname>
@ -186,7 +186,7 @@ $file = file_get_contents('./people.txt', FILE_USE_INCLUDE_PATH);
<programlisting role="php">
<![CDATA[
<?php
// Read 50 characters from the 100th character
// Read 14 characters starting from the 21st character
$section = file_get_contents('./people.txt', NULL, NULL, 20, 14);
var_dump($section);
?>