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

6 lines
111 B
PHP
Raw Normal View History

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