summaryrefslogtreecommitdiff
path: root/ext/ftp/php_ftp.c
diff options
context:
space:
mode:
authorEgon Schmid <eschmid@php.net>2002-01-03 05:55:22 +0000
committerEgon Schmid <eschmid@php.net>2002-01-03 05:55:22 +0000
commite941df5d1a44708ecbcd8893ccbe47dbc733bc6b (patch)
treeee1f363276d382bd05f1e19f22d4bc81c16b3b5b /ext/ftp/php_ftp.c
parenta767522485c4048abf7ef0865486a0eadd633ad8 (diff)
downloadphp-git-e941df5d1a44708ecbcd8893ccbe47dbc733bc6b.tar.gz
Please, no punctuation mark at the end of the description.
Diffstat (limited to 'ext/ftp/php_ftp.c')
-rw-r--r--ext/ftp/php_ftp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/ftp/php_ftp.c b/ext/ftp/php_ftp.c
index 9f3b51f872..f853c9cf81 100644
--- a/ext/ftp/php_ftp.c
+++ b/ext/ftp/php_ftp.c
@@ -242,7 +242,7 @@ PHP_FUNCTION(ftp_chdir)
/* }}} */
/* {{{ proto bool ftp_exec(resource stream, string command)
- Requests execution of a program on the ftp server */
+ Requests execution of a program on the FTP server */
PHP_FUNCTION(ftp_exec)
{
pval *z_ftp;
@@ -267,7 +267,7 @@ PHP_FUNCTION(ftp_exec)
/* }}} */
/* {{{ proto string ftp_mkdir(resource stream, string directory)
- Creates a directory. Returns the absolute path for the new directory or false on error. */
+ Creates a directory and returns the absolute path for the new directory or false on error */
PHP_FUNCTION(ftp_mkdir)
{
zval *z_ftp;
@@ -743,7 +743,7 @@ static char *ze_zval_type_name(zval *arg)
/* {{{ proto bool ftp_set_option(resource stream, int option, mixed value)
- Sets an FTP option. */
+ Sets an FTP option */
PHP_FUNCTION(ftp_set_option)
{
zval *z_ftp, *z_value;
@@ -780,7 +780,7 @@ PHP_FUNCTION(ftp_set_option)
/* }}} */
/* {{{ proto mixed ftp_get_option(resource stream, int option)
- Gets an FTP option. */
+ Gets an FTP option */
PHP_FUNCTION(ftp_get_option)
{
zval *z_ftp;