1
0
Fork 0
mirror of synced 2024-09-09 22:27:06 +12:00
appwrite/tests/resources/functions/php-cookie/index.php
2023-10-27 15:33:26 +02:00

5 lines
111 B
PHP

<?php
return function ($context) {
return $context->res->send($context->req->headers['cookie'] ?? '');
};