我正在使用Yii2框架,并尝试打印原始文本,但不知道为什么文本包含空行。 Controller中的代码如下:
public function actionOnConnect(){
$post_data = \Yii::$app->request->post();
\Yii::getLogger()->log("--------->>> OnConnect!", Logger::LEVEL_INFO);
\Yii::getLogger()->log($post_data, Logger::LEVEL_INFO);
\Yii::$app->response->format = Response::FORMAT_RAW;
return '-->0';
}
答案 0 :(得分:1)
你的代码可能是空行,例如:
-line here
<?php
/* code/*
或:
/*code*/
?php>
-linehere
答案 1 :(得分:0)
我重新安装了Yii框架并解决了这个问题。 enter image description here