mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 08:58:56 +00:00
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:
parent
2d78b65707
commit
165acdaa25
1 changed files with 5 additions and 3 deletions
|
@ -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());
|
||||
|
|
Loading…
Reference in a new issue