/* }}} */
-/* {{{ proto array compact(string var_name | array var_names [, ... ])
+/* {{{ proto array compact(string var_name |, array var_names [, ... ]])
Creates a hash containing variables and their values */
PHP_FUNCTION(compact)
{
/* {{{ proto array array_splice(array input, int offset [, int length [, array replacement]])
- Removes the elements designated by offset and length and replace them with
- supplied array */
+ Removes the elements designated by offset and length and replace them with supplied array */
PHP_FUNCTION(array_splice)
{
zval ***args, /* Function arguments array */
/* {{{ proto array array_keys(array input [, mixed search_value])
- Return just the keys from the input array, optionally only
- for the specified search_value */
+ Return just the keys from the input array, optionally only for the specified search_value */
PHP_FUNCTION(array_keys)
{
zval **input, /* Input array */
efree(args); \
RETURN_FALSE;
-/* {{{ proto bool array_multisort(array $ar1 [, SORT_ASC|SORT_DESC] [, array $ar2 [ICASE|NUM] [DESC|ASC], ...])
+/* {{{ proto bool array_multisort(array ar1 [, SORT_ASC|SORT_DESC] [, array ar2 [ICASE|NUM] [DESC|ASC], ...])
Sort multiple arrays at once similar to how ORDER BY clause works in SQL */
PHP_FUNCTION(array_multisort)
{
static char psheader[] = "\xFF\xED\0\0Photoshop 3.0\08BIM\x04\x04\0\0\0\0";
-/* {{{ proto array iptcembed(string iptcdata, string jpeg_file_name [ , int spool ])
+/* {{{ proto array iptcembed(string iptcdata, string jpeg_file_name [, int spool])
Embed binary IPTC data into a JPEG image. */
PHP_FUNCTION(iptcembed)
{
}
/* {{{ proto array iptcparse(string iptcdata)
- Parse binary IPTC-data into associative array. */
+ Parse binary IPTC-data into associative array */
PHP_FUNCTION(iptcparse)
{
unsigned int length, inx, len, inheader, tagsfound;
/* }}} */
/* {{{ proto double deg2rad(double number)
- Converts the number in degrees to the radian equivalent */
+ Converts the number in degrees to the radian equivalent */
PHP_FUNCTION(deg2rad)
{
}
/* }}} */
-/* {{{ proto string number_format(double number, [,int num_decimal_places [, string dec_seperator, string thousands_seperator)]])
+/* {{{ proto string number_format(double number [, int num_decimal_places [, string dec_seperator, string thousands_seperator)]])
Formats a number with grouped thousands */
PHP_FUNCTION(number_format)
/* {{{ proto array gettimeofday(void)
- returns the current time as array */
+ Returns the current time as array */
PHP_FUNCTION(gettimeofday)
{
#ifdef HAVE_GETTIMEOFDAY
/* }}} */
#ifdef HAVE_GETRUSAGE
-/* {{{ proto array getrusage([ int who ])
- returns an array of usage statistics */
+/* {{{ proto array getrusage([int who])
+ Returns an array of usage statistics */
PHP_FUNCTION(getrusage)
{
struct rusage usg;