| If you did not, or have any questions about PHP licensing, please |
| contact core@php.net. |
+----------------------------------------------------------------------+
- | Authors: |
- | Andrew Skalski <askalski@chek.com> |
+ | Authors: Andrew Skalski <askalski@chek.com> |
+----------------------------------------------------------------------+
*/
}
/* {{{ proto int ftp_connect(string host [, int port])
- Open a FTP stream */
+ Opens a FTP stream */
PHP_FUNCTION(ftp_connect)
{
pval *arg1, *arg2;
}
/* {{{ proto string textdomain(string domain)
- Set the textdomain to "domain". Returns the current domain. */
+ Set the textdomain to "domain". Returns the current domain */
PHP_FUNCTION(textdomain)
{
pval **domain;
/* }}} */
/* {{{ proto string gettext(string msgid)
- Return the translation of msgid for the current domain, or msgid unaltered if a translation does not exist. */
+ Return the translation of msgid for the current domain, or msgid unaltered if a translation does not exist */
PHP_FUNCTION(gettext)
{
pval **msgid;
/* }}} */
/* {{{ proto string dgettext(string domain_name, string msgid)
- Return the translation of msgid for domain_name, or msgid unaltered if a translation does not exist. */
+ Return the translation of msgid for domain_name, or msgid unaltered if a translation does not exist */
PHP_FUNCTION(dgettext)
{
pval **domain_name, **msgid;
/* }}} */
/* {{{ proto string dcgettext(string domain_name, string msgid, long category)
- Return the translation of msgid for domain_name and category, or msgid unaltered if a translation does not exist. */
+ Return the translation of msgid for domain_name and category, or msgid unaltered if a translation does not exist */
PHP_FUNCTION(dcgettext)
{
pval **domain_name, **msgid, **category;
/* }}} */
/* {{{ proto string bindtextdomain(string domain_name, string dir)
- Bind to the text domain domain_name, looking for translations in dir. Returns the current domain. */
+ Bind to the text domain domain_name, looking for translations in dir. Returns the current domain */
PHP_FUNCTION(bindtextdomain)
{
pval **domain_name, **dir;