gephart/response

Gephart 响应组件

0.4 2017-09-05 18:34 UTC

This package is auto-updated.

Last update: 2024-09-12 13:37:26 UTC


README

Build Status

依赖

  • PHP >= 7.1

安装

composer require gephart/response

基本使用

/index.php

<?php

$content = "<body>Content</body>";

$respose = new \Gephart\Response\Response($content);
$respose->render();