Searched refs:directives (Results 1 – 19 of 19) sorted by relevance
/php-src/ext/opcache/ |
H A D | zend_accelerator_module.c | 776 zval directives, version, blacklist; local 789 array_init(&directives); 790 add_assoc_bool(&directives, "opcache.enable", ZCG(enabled)); 846 add_assoc_string(&directives, "opcache.jit", JIT_G(options)); 847 add_assoc_long(&directives, "opcache.jit_buffer_size", JIT_G(buffer_size)); 848 add_assoc_long(&directives, "opcache.jit_debug", JIT_G(debug)); 849 add_assoc_long(&directives, "opcache.jit_bisect_limit", JIT_G(bisect_limit)); 852 add_assoc_long(&directives, "opcache.jit_hot_func", JIT_G(hot_func)); 853 add_assoc_long(&directives, "opcache.jit_hot_loop", JIT_G(hot_loop)); 854 add_assoc_long(&directives, "opcache.jit_hot_return", JIT_G(hot_return)); [all …]
|
/php-src/ext/opcache/tests/ |
H A D | bug79665.phpt | 14 var_dump($config['directives']['opcache.max_wasted_percentage']); 16 var_dump($config['directives']['opcache.memory_consumption']); 18 var_dump($config['directives']['opcache.max_accelerated_files']);
|
H A D | get_configuration_matches_ini.phpt | 2 Test that the directives listed with `opcache_get_configuration` include all those from the ini set… 11 $opts = opcache_get_configuration()['directives'];
|
H A D | 001_cli.phpt | 13 var_dump($config["directives"]["opcache.enable"]); 14 var_dump($config["directives"]["opcache.enable_cli"]);
|
/php-src/Zend/tests/ |
H A D | gh16509.phpt | 6 && ($conf = opcache_get_configuration()["directives"])
|
H A D | gh9407.phpt | 6 && ($conf = opcache_get_configuration()["directives"])
|
H A D | bug54268.phpt | 12 && ($conf = opcache_get_configuration()["directives"])
|
H A D | gh8841.phpt | 6 && ($conf = opcache_get_configuration()["directives"])
|
/php-src/tests/lang/ |
H A D | bug45392.phpt | 9 && ($conf = opcache_get_configuration()["directives"])
|
/php-src/ext/spl/tests/ |
H A D | gh14639.phpt | 11 && ($conf = opcache_get_configuration()["directives"])
|
/php-src/Zend/tests/stack_limit/ |
H A D | stack_limit_014.phpt | 8 && ($conf = opcache_get_configuration()["directives"])
|
/php-src/docs/ |
H A D | README.md | 32 This tool is not perfect. It breaks on custom directives, so we might switch to either a fork or
|
/php-src/ext/zlib/tests/ |
H A D | bug60761.phpt | 9 // the INI directives from bug #60761 report
|
/php-src/Zend/ |
H A D | zend_ini.c | 208 HashTable *directives = registered_zend_ini_directives; in zend_register_ini_entries_ex() local 219 if (directives != EG(ini_directives)) { in zend_register_ini_entries_ex() 220 directives = EG(ini_directives); in zend_register_ini_entries_ex() 242 if (zend_hash_add_ptr(directives, p->name, (void*)p) == NULL) { in zend_register_ini_entries_ex()
|
/php-src/main/ |
H A D | main.c | 2335 const char *directives[18]; /* Remember to change this if the number of directives change */ in php_module_startup() member 2336 } directives[2] = { in php_module_startup() local 2376 const char **p = directives[i].directives; in php_module_startup() 2382 zend_error(directives[i].error_level, directives[i].phrase, *p); in php_module_startup()
|
/php-src/sapi/fpm/ |
H A D | www.conf.in | 7 ; It only applies on the following directives: 94 ; following directives. With this process management, there will be 468 ; overwrite the values previously defined in the php.ini. The directives are the 472 ; php_admin_value/php_admin_flag - these directives won't be overwritten by
|
/php-src/sapi/litespeed/ |
H A D | README.md | 21 same way as that in mod_php with the same configuration directives.
|
/php-src/ |
H A D | CODING_STANDARDS.md | 274 preprocessor directives you should put the `#` at the beginning of a line,
|
/php-src/docs/source/miscellaneous/ |
H A D | stubs.rst | 490 then only one arginfo file is going to be generated, and ``#if`` prepocessor directives will ensure
|
Completed in 44 milliseconds