PHP_INI_END()
-/* {{{ proto int com_load(string module_name [, string remote_host [, int codepage[, string typelib]]])
+/* {{{ proto int com_load(string module_name [, string remote_host [, int codepage [, string typelib]]])
Loads a COM module */
PHP_FUNCTION(com_load)
{
/* }}} */
-/* {{{ proto bool com_load_typelib(string typelib_name[, int case_insensitiv]) */
+/* {{{ proto bool com_load_typelib(string typelib_name [, int case_insensitiv])
+ Loads a Typelib */
PHP_FUNCTION(com_load_typelib)
{
pval *arg_typelib, *arg_cis;
/* }}} */
/* {{{ proto bool isalnum(mixed c)
- Check for alphanumeric character(s) */
+ Checks for alphanumeric character(s) */
PHP_FUNCTION(ctype_alnum)
{
PHP_EXPERIMENTAL("4.0.4dev", NULL)
/* }}} */
/* {{{ proto bool isalpha(mixed c)
- Check for alphabetic character(s) */
+ Checks for alphabetic character(s) */
PHP_FUNCTION(ctype_alpha)
{
PHP_EXPERIMENTAL("4.0.4dev", NULL)
/* }}} */
/* {{{ proto bool iscntrl(mixed c)
- Check for control character(s) */
+ Checks for control character(s) */
PHP_FUNCTION(ctype_cntrl)
{
PHP_EXPERIMENTAL("4.0.4dev", NULL)
/* }}} */
/* {{{ proto bool isdigit(mixed c)
- Check for numeric character(s) */
+ Checks for numeric character(s) */
PHP_FUNCTION(ctype_digit)
{
PHP_EXPERIMENTAL("4.0.4dev", NULL)
/* }}} */
/* {{{ proto bool islower(mixed c)
- Check for lowercase character(s) */
+ Checks for lowercase character(s) */
PHP_FUNCTION(ctype_lower)
{
PHP_EXPERIMENTAL("4.0.4dev", NULL)
/* }}} */
/* {{{ proto bool isgraph(mixed c)
- Check for any printable character(s) except space */
+ Checks for any printable character(s) except space */
PHP_FUNCTION(ctype_graph)
{
PHP_EXPERIMENTAL("4.0.4dev", NULL)
/* }}} */
/* {{{ proto bool isprint(mixed c)
- Check for printable character(s) */
+ Checks for printable character(s) */
PHP_FUNCTION(ctype_print)
{
PHP_EXPERIMENTAL("4.0.4dev", NULL)
/* }}} */
/* {{{ proto bool ispunct(mixed c)
- Check for any printable character which is not whitespace or an alphanumeric character */
+ Checks for any printable character which is not whitespace or an alphanumeric character */
PHP_FUNCTION(ctype_punct)
{
PHP_EXPERIMENTAL("4.0.4dev", NULL)
/* }}} */
/* {{{ proto bool isspace(mixed c)
- Check for whitespace character(s)*/
+ Checks for whitespace character(s)*/
PHP_FUNCTION(ctype_space)
{
PHP_EXPERIMENTAL("4.0.4dev", NULL)
/* }}} */
/* {{{ proto bool isupper(mixed c)
- Check for uppercase character(s) */
+ Checks for uppercase character(s) */
PHP_FUNCTION(ctype_upper)
{
PHP_EXPERIMENTAL("4.0.4dev", NULL)
/* }}} */
/* {{{ proto bool isxdigit(mixed c)
- Check for character(s) representing a hexadecimal digit */
+ Checks for character(s) representing a hexadecimal digit */
PHP_FUNCTION(ctype_xdigit)
{
PHP_EXPERIMENTAL("4.0.4dev", NULL)