如何在我的函数中添加正则表达式配置。 我在检查过程中允许在API中使用所有正则表达式验证。
这是我的功能。
public function actionViewBidHistory()
{
header('Content-Type: application/json; charset=utf-8');
\Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
$msg = array();
$request = Yii::$app->request;
$headers = Yii::$app->request->headers;
$authorization = $headers->get('Authorization');
$msg["details"] = Bidding::BidHistoryDetails($authorization);
return ($msg);
}
真的很感激任何帮助。 感谢