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

7 lines
123 B
PHP
Raw Normal View History

2024-07-01 08:35:06 +00:00
<?php
return function ($context) {
$bytes = pack('C*', ...[0, 10, 255]);
return $context->res->binary($bytes);
};