}
/* {{{ proto int ip2long(string ip_address)
- Converts a string containing an (Ipv4) Internet Protocol dotted address into a proper address. */
+ Converts a string containing an (IPv4) Internet Protocol dotted address into a proper address */
PHP_FUNCTION(ip2long)
{
zval **str;
/* }}} */
/* {{{ proto string long2ip(int proper_address)
- Converts an (Ipv4) Internet network address into a string in Internet standard dotted format. */
+ Converts an (IPv4) Internet network address into a string in Internet standard dotted format */
PHP_FUNCTION(long2ip)
{
zval **num;
/* }}} */
-/* {{{ proto string wordwrap(string str[, int width[, string break]])
- * wrap buffer to selected number of characters using string break char */
+/* {{{ proto string wordwrap(string str [, int width [, string break]])
+ * Wrap buffer to selected number of characters using string break char */
PHP_FUNCTION(wordwrap)
{
pval **ptext, **plinelength, **pbreakchar;
/* }}} */
/* {{{ proto void parse_str(string encoded_string)
- Parses GET/POST/COOKIE data and sets global variables. */
+ Parses GET/POST/COOKIE data and sets global variables */
PHP_FUNCTION(parse_str)
{
zval **arg;