appwrite/tests/resources/functions/php-cookie/index.php

6 lines
111 B
PHP
Raw Normal View History

2023-11-14 08:59:46 +00:00
<?php
return function ($context) {
return $context->res->send($context->req->headers['cookie'] ?? '');
};