1
0
Fork 0
mirror of synced 2024-07-01 20:50:49 +12:00
appwrite/tests/resources/functions/php-cookie/index.php
2023-10-27 15:33:26 +02:00

6 lines
111 B
PHP

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