php-internal-docs 8.4.8
Unofficial docs for php/php-src
|
#include "php.h"
Go to the source code of this file.
Data Structures | |
struct | php_ini_builder |
Macros | |
#define | php_ini_builder_prepend_literal(b, l) |
Functions | |
PHPAPI void | php_ini_builder_prepend (struct php_ini_builder *b, const char *src, size_t length) |
PHPAPI void | php_ini_builder_unquoted (struct php_ini_builder *b, const char *name, size_t name_length, const char *value, size_t value_length) |
PHPAPI void | php_ini_builder_quoted (struct php_ini_builder *b, const char *name, size_t name_length, const char *value, size_t value_length) |
PHPAPI void | php_ini_builder_define (struct php_ini_builder *b, const char *arg) |
#define php_ini_builder_prepend_literal | ( | b, | |
l ) |
Definition at line 76 of file php_ini_builder.h.
PHPAPI void php_ini_builder_define | ( | struct php_ini_builder * | b, |
const char * | arg ) |
Parse an INI entry from the command-line option "--define".
Definition at line 63 of file php_ini_builder.c.
PHPAPI void php_ini_builder_prepend | ( | struct php_ini_builder * | b, |
const char * | src, | ||
size_t | length ) |
Prepend a string.
src | the source string |
length | the size of the source string |
Definition at line 22 of file php_ini_builder.c.
PHPAPI void php_ini_builder_quoted | ( | struct php_ini_builder * | b, |
const char * | name, | ||
size_t | name_length, | ||
const char * | value, | ||
size_t | value_length ) |
Append a quoted name/value pair.
Definition at line 46 of file php_ini_builder.c.
PHPAPI void php_ini_builder_unquoted | ( | struct php_ini_builder * | b, |
const char * | name, | ||
size_t | name_length, | ||
const char * | value, | ||
size_t | value_length ) |
Append an unquoted name/value pair.
Definition at line 31 of file php_ini_builder.c.