Searched refs:httponly (Results 1 – 12 of 12) sorted by relevance
/php-src/ext/session/tests/ |
H A D | session_get_cookie_params_variation1.phpt | 49 ["httponly"]=> 63 ["httponly"]=> 77 ["httponly"]=> 91 ["httponly"]=> 105 ["httponly"]=> 119 ["httponly"]=> 133 ["httponly"]=>
|
H A D | session_get_cookie_params_basic.phpt | 31 "httponly" => FALSE, 49 ["httponly"]=> 64 ["httponly"]=> 79 ["httponly"]=> 94 ["httponly"]=>
|
/php-src/ext/standard/ |
H A D | head.c | 81 zend_string *path, zend_string *domain, bool secure, bool httponly, in php_setcookie() argument 178 if (httponly) { in php_setcookie() 195 zend_string **domain, bool *secure, bool *httponly, zend_string **samesite) in php_head_parse_cookie_options_array() argument 214 *httponly = zval_is_true(value); in php_head_parse_cookie_options_array() 230 bool secure = 0, httponly = 0; in php_setcookie_common() local 240 Z_PARAM_BOOL(httponly) in php_setcookie_common() 251 &domain, &secure, &httponly, &samesite) in php_setcookie_common() 257 …if (php_setcookie(name, value, expires, path, domain, secure, httponly, samesite, !is_raw) == SUCC… in php_setcookie_common()
|
H A D | head.h | 32 zend_string *path, zend_string *domain, bool secure, bool httponly,
|
H A D | basic_functions.stub.php | 2242 …= 0, string $path = "", string $domain = "", bool $secure = false, bool $httponly = false): bool {} 2244 …= 0, string $path = "", string $domain = "", bool $secure = false, bool $httponly = false): bool {}
|
H A D | basic_functions_arginfo.h | 749 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, httponly, _IS_BOOL, 0, "false")
|
/php-src/ext/session/ |
H A D | session.stub.php | 88 …string $path = null, ?string $domain = null, ?bool $secure = null, ?bool $httponly = null): bool {} argument
|
H A D | session_arginfo.h | 85 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, httponly, _IS_BOOL, 1, "null")
|
H A D | session.c | 1787 bool httponly = 0, httponly_null = 1; in PHP_FUNCTION() local 1798 Z_PARAM_BOOL_OR_NULL(httponly, httponly_null) in PHP_FUNCTION() 1856 httponly = zval_is_true(value); in PHP_FUNCTION() 1921 …result = zend_alter_ini_entry_chars(ini_name, httponly ? "1" : "0", 1, PHP_INI_USER, PHP_INI_STAGE… in PHP_FUNCTION()
|
/php-src/ext/standard/tests/network/ |
H A D | setcookie.phpt | 21 … $tsn, 'path' => '/path/', 'domain' => 'domain.tld', 'secure' => true, 'httponly' => true, 'samesi…
|
/php-src/ |
H A D | php.ini-development | 1339 ; https://php.net/session.cookie-httponly
|
H A D | php.ini-production | 1341 ; https://php.net/session.cookie-httponly
|
Completed in 39 milliseconds