1
0
Fork 0
mirror of synced 2024-09-12 23:53:15 +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'] ?? '');
};