return(ret);
}
-/* {{{ string dbmfirstkey(int dbm_identifier)
+/* {{{ proto string dbmfirstkey(int dbm_identifier)
Retrieves the first key from a dbm database */
PHP_FUNCTION(dbmfirstkey)
{
}
/* }}} */
-/* {{{ proto class node(string name)
+/* {{{ proto class domxml_node(string name)
Creates node */
PHP_FUNCTION(domxml_node)
{
}
/* }}} */
-/* {{{ proto session_decode(string data)
+/* {{{ proto bool session_decode(string data)
Deserializes data and reinitializes the variables */
PHP_FUNCTION(session_decode)
{
}
/* }}} */
-/* {{{ proto session_start(void)
+/* {{{ proto bool session_start(void)
Begin session - reinitializes freezed variables, registers browsers etc */
PHP_FUNCTION(session_start)
{
}
/* }}} */
-/* {{{ proto session_destroy(void)
+/* {{{ proto void session_destroy(void)
Destroy the current session and all data associated with it */
PHP_FUNCTION(session_destroy)
{
}
#endif
-/* {{{ proto session_unset(void)
+/* {{{ proto void session_unset(void)
Unset all registered variables */
PHP_FUNCTION(session_unset)
{
PHP_FE(register_shutdown_function, NULL)
PHP_FE(highlight_file, NULL)
- PHP_NAMED_FE(show_source, PHP_FN(highlight_file), NULL)
+ PHP_FALIAS(show_source, highlight_file , NULL)
PHP_FE(highlight_string, NULL)
PHP_FE(ini_get, NULL)
/* }}} */
-/* proto array get_extension_funcs(string extension_name)
+/* {{{ proto array get_extension_funcs(string extension_name)
Returns an array with the names of functions belonging to the named extension */
PHP_FUNCTION(get_extension_funcs)
{
return cmd;
}
-/* {{{ proto escapeshellcmd(string command)
+/* {{{ proto string escapeshellcmd(string command)
Escape shell metacharacters */
PHP_FUNCTION(escapeshellcmd)
{
}
/* }}} */
-
+/* {{{ proto string shell_exec(strng cmd)
+ What excatly is this variant for ??? */
PHP_FUNCTION(shell_exec)
{
FILE *in;
return_value->value.str.len = total_readbytes;
return_value->type = IS_STRING;
}
-
+/* }}} */
/*
* Local variables:
/* }}} */
-/* {{{ proto int socket_set_blocking(int socket descriptor, int mode)
+/* {{{ proto int set_socket_blocking(int socket descriptor, int mode)
Set blocking/non-blocking mode on a socket */
PHPAPI int php_set_sock_blocking(int socketd, int block)
{
efree (BG(CurrentStatFile));
}
return SUCCESS;
-}
+}
+/* {{{ proto double diskfreespace(string path)
+ Get free diskspace for filesystem that path is on */
PHP_FUNCTION(diskfreespace)
{
pval **path;
RETURN_DOUBLE(bytesfree);
}
+/* }}} */
/* {{{ proto bool chown(string filename, mixed user)
Change file owner */
PHP_FUNCTION(metaphone);
-/* metaphone -- Breaks english phrases down into their phonemes. */
+/* {{{ proto string metaphone(string text, int phones)
+ Break english phrases down into their phonemes */
PHP_FUNCTION(metaphone)
{
pval **pstr, **pphones;
RETURN_FALSE;
}
}
+/* }}} */
/*
this is now the original code by Michael G Schwern:
/* }}} */
-/* proto string ob_get_contents(void)
+/* {{{ proto string ob_get_contents(void)
Return the contents of the output buffer */
PHP_FUNCTION(ob_get_contents)
{
}
+/* {{{ proto void parse_ini_file(string filename)
+ Parse configuration file */
PHP_FUNCTION(parse_ini_file)
{
#ifdef ZTS
fclose(cfgin);
#endif
}
-
+/* }}} */
int php_shutdown_config(void)
{
/* }}} */
-/* proto string ob_get_contents(void)
+/* {{{ proto string ob_get_contents(void)
Return the contents of the output buffer */
PHP_FUNCTION(ob_get_contents)
{