设置 response 返回内容
public bool setContent(mixed $content)
设置内容体, 支持所有PHP合法变量类型
设置成功返回 true
<?php use Asf\Http\Response; $rep = new Response(); $rep->setContent("Hello"); $rep->send(); /* 输出值 */ {"errno":0,"data":"Hello"}