php-internal-docs 8.4.8
Unofficial docs for php/php-src
Loading...
Searching...
No Matches
cli.h
Go to the documentation of this file.
1/*
2 +----------------------------------------------------------------------+
3 | Copyright (c) The PHP Group |
4 +----------------------------------------------------------------------+
5 | This source file is subject to version 3.01 of the PHP license, |
6 | that is bundled with this package in the file LICENSE, and is |
7 | available through the world-wide-web at the following url: |
8 | https://www.php.net/license/3_01.txt |
9 | If you did not receive a copy of the PHP license and are unable to |
10 | obtain it through the world-wide-web, please send a note to |
11 | license@php.net so we can mail you a copy immediately. |
12 +----------------------------------------------------------------------+
13 | Author: Johannes Schlueter <johannes@php.net> |
14 +----------------------------------------------------------------------+
15*/
16
17#ifndef CLI_H
18#define CLI_H
19
20#ifdef PHP_WIN32
21# define PHP_CLI_API __declspec(dllexport)
22#elif defined(__GNUC__) && __GNUC__ >= 4
23# define PHP_CLI_API __attribute__ ((visibility("default")))
24#else
25# define PHP_CLI_API
26#endif
27
28
29extern PHP_CLI_API ssize_t sapi_cli_single_write(const char *str, size_t str_length);
30
31typedef struct {
32 size_t (*cli_shell_write)(const char *str, size_t str_length);
33 size_t (*cli_shell_ub_write)(const char *str, size_t str_length);
36
38
53
57
58#endif /* CLI_H */
PHP_CLI_API ssize_t sapi_cli_single_write(const char *str, size_t str_length)
Definition php_cli.c:242
#define PHP_CLI_API
Definition cli.h:25
php_cli_mode
Definition cli.h:39
@ PHP_CLI_MODE_STRIP
Definition cli.h:43
@ PHP_CLI_MODE_REFLECTION_EXT_INFO
Definition cli.h:49
@ PHP_CLI_MODE_PROCESS_STDIN
Definition cli.h:45
@ PHP_CLI_MODE_HIGHLIGHT
Definition cli.h:41
@ PHP_CLI_MODE_REFLECTION_ZEND_EXTENSION
Definition cli.h:50
@ PHP_CLI_MODE_LINT
Definition cli.h:42
@ PHP_CLI_MODE_REFLECTION_EXTENSION
Definition cli.h:48
@ PHP_CLI_MODE_REFLECTION_CLASS
Definition cli.h:47
@ PHP_CLI_MODE_SHOW_INI_CONFIG
Definition cli.h:51
@ PHP_CLI_MODE_REFLECTION_FUNCTION
Definition cli.h:46
@ PHP_CLI_MODE_STANDARD
Definition cli.h:40
@ PHP_CLI_MODE_CLI_DIRECT
Definition cli.h:44
PHP_CLI_API cli_shell_callbacks_t * php_cli_get_shell_callbacks(void)
Definition php_cli.c:111
size_t(* cli_shell_ub_write)(const char *str, size_t str_length)
Definition cli.h:33
size_t(* cli_shell_write)(const char *str, size_t str_length)
Definition cli.h:32
int(* cli_shell_run)(void)
Definition cli.h:34
php_cli_mode mode
Definition cli.h:55
ZEND_API void(ZEND_FASTCALL *zend_touch_vm_stack_data)(void *vm_stack_data)