123456789101112131415161718192021222324252627 |
- #ifndef EXEC_H
- #define EXEC_H
- PHP_MINIT_FUNCTION(proc_open);
- PHP_MINIT_FUNCTION(exec);
- PHPAPI zend_string *php_escape_shell_cmd(const char *str);
- PHPAPI zend_string *php_escape_shell_arg(const char *str);
- PHPAPI int php_exec(int type, const char *cmd, zval *array, zval *return_value);
- #endif
|