Home
last modified time | relevance | path

Searched refs:flag (Results 176 – 200 of 215) sorted by relevance

123456789

/php-src/ext/standard/tests/strings/
H A Dhtmlentities21.phpt22 function test($flag, $charset) {
28 $a = htmlentities($test, $flag | ENT_DISALLOWED, $charset);
29 $b = htmlspecialchars($test, $flag | ENT_DISALLOWED, $charset);
/php-src/ext/mysqli/tests/
H A Dmysqli_real_connect_pconn.phpt108 …// how do we test if gets forbidden because of a missing right or the flag, this test is partly bo…
H A Dmysqli_real_connect.phpt106 …// how do we test if gets forbidden because of a missing right or the flag, this test is partly bo…
H A Dmysqli_report.phpt261 // checks the flag. Functions to check: mysqli_query() - done above,
/php-src/
H A DUPGRADING.INTERNALS133 - Added Bison flag '-Wall' when generating lexer files as done in *nix build
222 - Added the php_base64_encode_ex() API with flag parameters, value can be
H A DNEWS184 . Persistent connections support the PGSQL_CONNECT_FORCE_RENEW flag.
/php-src/sapi/litespeed/
H A Dlsapilib.c242 void LSAPI_Log(int flag, const char * fmt, ...) in LSAPI_Log() argument
246 if ((flag & LSAPI_LOG_TIMESTAMP_BITS) in LSAPI_Log()
253 if (flag & LSAPI_LOG_TIMESTAMP_FULL) in LSAPI_Log()
259 else if (flag & LSAPI_LOG_TIMESTAMP_HMS) in LSAPI_Log()
266 int level = flag & LSAPI_LOG_LEVEL_BITS; in LSAPI_Log()
272 if (flag & LSAPI_LOG_PID) in LSAPI_Log()
2589 int flag = 1; in LSAPI_CreateListenSock2() local
2615 (char *)( &flag ), sizeof(flag)) == 0) in LSAPI_CreateListenSock2()
/php-src/build/
H A Dlibtool.m4421 # Discard the --no-reexec flag, and continue.
2029 # implement the --enable-shared flag
2060 # set the default shared flag to --disable-shared
2069 # implement the --enable-static flag
2109 # implement the --enable-fast-install flag
2150 # implement the --with-pic flag
2353 # find reload flag for linker
4295 # Compiler flag to prevent dynamic linking.
4298 # Compiler flag to turn off builtin functions.
4301 # Compiler flag to allow reflexive dlopens.
[all …]
/php-src/ext/pdo_mysql/tests/
H A Dpdo_mysql_prepare_native.phpt110 // always strings, like STRINGIFY flag
/php-src/docs/source/introduction/ides/
H A Dvisual-studio-code.rst93 ``--enable-debug`` configure flag. Copy the following into your projects ``.vscode/launch.json``
/php-src/ext/mbstring/tests/
H A Dmb_convert_kana.phpt128 // Try non-existent flag
253 mb_convert_kana(): Argument #2 ($mode) contains invalid flag: 'Z'
H A Dpictogram1.phpt71 /* Chinese flag emoji */
/php-src/ext/zip/
H A Dphp_zip.c2120 zend_long flag, value; local
2122 if (zend_parse_parameters(ZEND_NUM_ARGS(), "ll", &flag, &value) == FAILURE) {
2128 if (zip_set_archive_flag(intern, flag, (int)value)) {
2139 zend_long flag, flags = 0; local
2141 if (zend_parse_parameters(ZEND_NUM_ARGS(), "l|l", &flag, &flags) == FAILURE) {
2147 RETURN_LONG(zip_get_archive_flag(intern, flag, flags));
H A Dphp_zip_arginfo.h122 ZEND_ARG_TYPE_INFO(0, flag, IS_LONG, 0)
127 ZEND_ARG_TYPE_INFO(0, flag, IS_LONG, 0)
/php-src/main/
H A Doutput.c1505 zend_long flag = 1; in PHP_FUNCTION() local
1507 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|b", &flag) == FAILURE) { in PHP_FUNCTION()
1511 php_output_set_implicit_flush((int) flag); in PHP_FUNCTION()
/php-src/ext/mbstring/
H A Dmbstring.c440 return !(encoding->flag & MBFL_ENCTYPE_GL_UNSAFE); in php_mb_zend_encoding_lexer_compatibility_checker()
1659 unsigned int char_len = enc->flag & (MBFL_ENCTYPE_SBCS | MBFL_ENCTYPE_WCS2 | MBFL_ENCTYPE_WCS4); in PHP_FUNCTION()
1818 …unsigned int char_len = encoding->flag & (MBFL_ENCTYPE_SBCS | MBFL_ENCTYPE_WCS2 | MBFL_ENCTYPE_WCS… in mb_get_strlen()
2125 unsigned int flag = enc->flag & (MBFL_ENCTYPE_SBCS | MBFL_ENCTYPE_WCS2 | MBFL_ENCTYPE_WCS4); in mb_get_substr() local
2126 if (flag) { in mb_get_substr()
2128 from *= flag; in mb_get_substr()
2129 len *= flag; in mb_get_substr()
2415 …unsigned int char_len = string.encoding->flag & (MBFL_ENCTYPE_SBCS | MBFL_ENCTYPE_WCS2 | MBFL_ENCT… in PHP_FUNCTION()
5968 } else if (enc->flag & MBFL_ENCTYPE_WCS2) { in php_mb_mbchar_bytes()
5970 } else if (enc->flag & MBFL_ENCTYPE_WCS4) { in php_mb_mbchar_bytes()
/php-src/ext/fileinfo/libmagic/
H A Dfile.h205 uint8_t flag; member
/php-src/Zend/
H A Dzend_hash.h121 …ZEND_FASTCALL zend_hash_add_or_update(HashTable *ht, zend_string *key, zval *pData, uint32_t flag);
127 …end_hash_str_add_or_update(HashTable *ht, const char *key, size_t len, zval *pData, uint32_t flag);
133 …ND_FASTCALL zend_hash_index_add_or_update(HashTable *ht, zend_ulong h, zval *pData, uint32_t flag);
301 …PI zval* ZEND_FASTCALL zend_hash_minmax(const HashTable *ht, compare_func_t compar, uint32_t flag);
/php-src/win32/build/
H A Dconfutils.js1786 function REMOVE_TARGET(dllname, flag) argument
1792 if (configure_subst.Exists(flag)) {
1793 var targets = configure_subst.Item(flag);
1796 configure_subst.Remove(flag);
1800 configure_subst.Add(flag, targets);
/php-src/ext/soap/
H A Dphp_encoding.c2000 int i = 0, flag = 0; in calc_dimension_12() local
2010 if (flag == 0) { in calc_dimension_12()
2012 flag = 1; in calc_dimension_12()
2017 flag = 0; in calc_dimension_12()
2027 int i = -1, flag = 0; in get_position_12() local
2040 if (flag == 0) { in get_position_12()
2042 flag = 1; in get_position_12()
2048 flag = 0; in get_position_12()
/php-src/ext/dba/tests/setup/
H A Dsetup_dba_tests.inc170 const LOCKS = ['l', 'd', '-', '' /* No lock flag is like 'd' */];
/php-src/docs/source/core/data-structures/
H A Dzval.rst179 on ASTs. When this flag is set, the ``zval.value.ast`` union member is set accordingly.
/php-src/ext/pcre/
H A Dphp_pcre.c392 uint32_t flag = 0; in PHP_MINFO_FUNCTION() local
406 if (!pcre2_config(PCRE2_CONFIG_JIT, &flag)) { in PHP_MINFO_FUNCTION()
407 php_info_print_table_row(2, "PCRE JIT Support", flag ? "enabled" : "disabled"); in PHP_MINFO_FUNCTION()
/php-src/ext/odbc/
H A Dphp_odbc.c662 zend_long flag; in php_odbc_fetch_attribs() local
664 if (zend_parse_parameters(ZEND_NUM_ARGS(), "Ol", &pv_res, odbc_result_ce, &flag) == FAILURE) { in php_odbc_fetch_attribs()
672 result->longreadlen = flag; in php_odbc_fetch_attribs()
674 result->binmode = flag; in php_odbc_fetch_attribs()
/php-src/sapi/fpm/
H A Dwww.conf.in83 ; Set the process dumpable flag (PR_SET_DUMPABLE prctl for Linux or
474 ; For php_*flag, valid values are on, off, 1, 0, true, false, yes or no.

Completed in 151 milliseconds

123456789