appwrite/tests/resources/functions/php-binary-request/index.php
2024-07-01 10:35:06 +02:00

6 lines
122 B
PHP

<?php
return function ($context) {
$hash = md5($context->req->bodyBinary);
return $context->res->send($hash);
};