1
0
Fork 0
mirror of synced 2024-09-20 11:37:45 +12:00
appwrite/tests/resources/functions/php-binary-response/index.php
2024-07-01 10:35:06 +02:00

6 lines
123 B
PHP

<?php
return function ($context) {
$bytes = pack('C*', ...[0, 10, 255]);
return $context->res->binary($bytes);
};