mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
added skeleton for missing function
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@65156 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
a5a87b4402
commit
034533bf75
3 changed files with 69 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.23 $ -->
|
||||
<!-- $Revision: 1.24 $ -->
|
||||
<reference id="ref.exec">
|
||||
<title>Program Execution functions</title>
|
||||
<titleabbrev>Program Execution</titleabbrev>
|
||||
|
@ -270,6 +270,27 @@ system("touch \"/tmp/$f\"; ls -l \"/tmp/$f\""); // and here we do, so we use quo
|
|||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id='function.shell-exec'>
|
||||
<refnamediv>
|
||||
<refname>shell_exec</refname>
|
||||
<refpurpose>
|
||||
Execute command via shell and return complete output as string
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>string <function>shell_exec</function></funcdef>
|
||||
<paramdef>string <parameter>cmd</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
&warn.undocumented.func;
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
</reference>
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.23 $ -->
|
||||
<!-- $Revision: 1.24 $ -->
|
||||
<reference id="ref.fdf">
|
||||
<title>Forms Data Format functions</title>
|
||||
<titleabbrev>FDF</titleabbrev>
|
||||
|
@ -580,6 +580,28 @@ unlink("outtest.fdf");
|
|||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id='function.fdf-add-template'>
|
||||
<refnamediv>
|
||||
<refname>fdf_add_template</refname>
|
||||
<refpurpose>Adds a template into the FDF document</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>bool <function>fdf_add_template</function></funcdef>
|
||||
<paramdef>int <parameter>fdfdoc</parameter></paramdef>
|
||||
<paramdef>int <parameter>newpage</parameter></paramdef>
|
||||
<paramdef>string <parameter>filename</parameter></paramdef>
|
||||
<paramdef>string <parameter>template</parameter></paramdef>
|
||||
<paramdef>int <parameter>rename</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
</reference>
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.29 $ -->
|
||||
<!-- $Revision: 1.30 $ -->
|
||||
<reference id="ref.ftp">
|
||||
<title>FTP functions</title>
|
||||
<titleabbrev>FTP</titleabbrev>
|
||||
|
@ -595,7 +595,29 @@ $upload = ftp_put ($conn_id, "$destination_file", "$source_file", FTP_ASCII);
|
|||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
</reference>
|
||||
<refentry id='function.ftp-exec'>
|
||||
<refnamediv>
|
||||
<refname>ftp_exec</refname>
|
||||
<refpurpose>
|
||||
Request execution of a program on the ftp server */
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>int <function>ftp_exec</function></funcdef>
|
||||
<paramdef>int <parameter>stream</parameter></paramdef>
|
||||
<paramdef>string <parameter>command</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
&warn.undocumented.func;
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
</reference>
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
|
|
Loading…
Reference in a new issue