reaway/think-response

v1.0.2 2022-10-31 15:18 UTC

This package is auto-updated.

Last update: 2024-05-29 05:02:58 UTC


README

安装

composer require reaway/think-response

用法

require __DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';

$response = html('html');
//$response = json(['key' => 'value']);
//$response = jsonp(['key' => 'value']);
//$response = redirect('http://www.baidu.com');
//$response = xml(['key' => 'value']);

$response->send();