mirror of
https://github.com/appwrite/appwrite
synced 2026-05-08 09:41:32 +00:00
7 lines
123 B
PHP
7 lines
123 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
return function ($context) {
|
||
|
|
$bytes = pack('C*', ...[0, 10, 255]);
|
||
|
|
return $context->res->binary($bytes);
|
||
|
|
};
|