appwrite/tests/resources/functions/php-binary-request/index.php

7 lines
122 B
PHP
Raw Normal View History

2024-07-01 08:35:06 +00:00
<?php
return function ($context) {
$hash = md5($context->req->bodyBinary);
return $context->res->send($hash);
};