useful-api.org/renderer/plain.php

7 lines
92 B
PHP
Raw Permalink Normal View History

2023-11-24 12:03:14 +00:00
<?php
return function ($data) {
header("Content-Type: text/plain");
echo $data;
2023-11-24 13:48:44 +00:00
};