1
0
Fork 0
mirror of synced 2024-09-17 01:47:57 +12:00
appwrite/tests/resources/functions/php-cookie/index.php
2023-10-27 10:26:46 +02:00

6 lines
154 B
PHP

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