Replaced docgen generated description with content

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@276820 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Philip Olson 2009-03-07 02:43:57 +00:00
parent 2d78b65707
commit 165acdaa25

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<refentry xml:id="splfileinfo.isexecutable" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
@ -14,7 +14,7 @@
<void />
</methodsynopsis>
<para>
The method description goes here.
Checks if the file is executable.
</para>
</refsect1>
@ -37,7 +37,9 @@
<title><function>SplFileInfo::isExecutable</function> example</title>
<programlisting role="php">
<![CDATA[
<?php $info = new SplFileInfo('/usr/bin/php'); var_dump($info->isExecutable());
<?php
$info = new SplFileInfo('/usr/bin/php');
var_dump($info->isExecutable());
$info = new SplFileInfo('/usr/bin');
var_dump($info->isExecutable());