}
/* {{{ proto escapeshellcmd(string command)
- escape shell metacharacters */
+ Escape shell metacharacters */
PHP_FUNCTION(escapeshellcmd)
{
pval **arg1;
/* }}} */
/* {{{ proto bool flock(int fp, int operation)
- portable file locking */
+ Portable file locking */
static int flock_values[] = { LOCK_SH, LOCK_EX, LOCK_UN };
/* }}} */
/* {{{ proto array get_meta_tags(string filename [, int use_include_path])
- Extracts all meta tag content attributes from a file and returns an array */
+ Extracts all meta tag content attributes from a file and returns an array */
PHP_FUNCTION(get_meta_tags)
{
}
/* }}} */
-/* {{{ proto int tmpfile()
- Create a temporary file that will be deleted automatically after use. */
+/* {{{ proto int tmpfile(void)
+ Create a temporary file that will be deleted automatically after use */
PHP_FUNCTION(tmpfile)
{
FILE *fp;
/* }}} */
/* {{{ proto int fclose(int fp)
- Close an open file pointer */
+ Close an open file pointer */
PHP_FUNCTION(fclose)
{
/* }}} */
/* {{{ proto array fgetcsv(int fp, int length)
- get line from file pointer and parse for CSV fields */
+ Get line from file pointer and parse for CSV fields */
PHP_FUNCTION(fgetcsv) {
char *temp, *tptr, *bptr;
/* {{{ proto void phpinfo(void)
-
Output a page of useful information about PHP and the current request */
PHP_FUNCTION(phpinfo)
{
/* {{{ proto void phpcredits(int)
-
Prints the list of people who've contributed to the PHP project */
PHP_FUNCTION(phpcredits)
{
}
/* {{{ proto double lcg_value()
- returns a value from the combined linear congruential generator */
+ Returns a value from the combined linear congruential generator */
PHP_FUNCTION(lcg_value)
{
RETURN_DOUBLE(php_combined_lcg());