1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef HEAD_H
- #define HEAD_H
- #define COOKIE_EXPIRES "; expires="
- #define COOKIE_MAX_AGE "; Max-Age="
- #define COOKIE_DOMAIN "; domain="
- #define COOKIE_PATH "; path="
- #define COOKIE_SECURE "; secure"
- #define COOKIE_HTTPONLY "; HttpOnly"
- #define COOKIE_SAMESITE "; SameSite="
- extern PHP_RINIT_FUNCTION(head);
- PHPAPI int php_header(void);
- PHPAPI zend_result php_setcookie(zend_string *name, zend_string *value, time_t expires,
- zend_string *path, zend_string *domain, bool secure, bool httponly,
- zend_string *samesite, bool url_encode);
- #endif
|