本文整理汇总了PHP中app\func\Proc::ActiveRecordErrorsToString方法的典型用法代码示例。如果您正苦于以下问题:PHP Proc::ActiveRecordErrorsToString方法的具体用法?PHP Proc::ActiveRecordErrorsToString怎么用?PHP Proc::ActiveRecordErrorsToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\func\Proc
的用法示例。
在下文中一共展示了Proc::ActiveRecordErrorsToString方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: actionCreate
/**
* Creates a new RramatDocfiles model.
* If creation is successful, the browser will be redirected to the 'view' page.
* @return mixed
*/
public function actionCreate()
{
if (Yii::$app->request->isAjax && Yii::$app->request->isPost) {
$UploadFile = new UploadDocFile();
$UploadFile->docFile = UploadedFile::getInstance($UploadFile, 'docFile');
$UploadTrigger = $UploadFile->upload();
if ($UploadTrigger['success']) {
$Docfiles = new Docfiles();
$Docfiles->docfiles_hash = $UploadTrigger['savedhashfilename_utf8'];
$Docfiles->docfiles_name = $UploadTrigger['savedfilename'];
$Docfiles->docfiles_ext = $UploadTrigger['fileextension'];
if ($Docfiles->save()) {
$RramatDocfiles = new RramatDocfiles();
$RramatDocfiles->id_docfiles = $Docfiles->primaryKey;
$RramatDocfiles->id_recoveryrecieveaktmat = $_POST['id_recoveryrecieveaktmat'];
if ($RramatDocfiles->save()) {
echo json_encode(['ok']);
} else {
throw new HttpException(500, Proc::ActiveRecordErrorsToString($RramatDocfiles));
}
} else {
throw new HttpException(500, Proc::ActiveRecordErrorsToString($Docfiles));
}
} else {
throw new HttpException(500, 'Ошибка при загрузке файла');
}
} else {
throw new HttpException(500, 'Ошибка запроса');
}
}
示例2: actionCreate
/**
* Creates a new Docfiles model.
* If creation is successful, the browser will be redirected to the 'view' page.
* @return mixed
*/
public function actionCreate()
{
if (Yii::$app->request->isAjax && Yii::$app->request->isPost) {
$model = new UploadDocFile();
$model->docFile = UploadedFile::getInstance($model, 'docFile');
$UploadTrigger = $model->upload();
if ($UploadTrigger['success']) {
$Docfiles = new Docfiles();
$Docfiles->docfiles_hash = $UploadTrigger['savedhashfilename_utf8'];
$Docfiles->docfiles_name = $UploadTrigger['savedfilename'];
$Docfiles->docfiles_ext = $UploadTrigger['fileextension'];
if ($Docfiles->save()) {
echo json_encode(['ok']);
} else {
throw new HttpException(500, Proc::ActiveRecordErrorsToString($Docfiles));
}
} else {
throw new HttpException(500, Proc::ActiveRecordErrorsToString($UploadTrigger['errors']));
}
} else {
throw new HttpException(500, 'Ошибка запроса');
}
}