本文整理匯總了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, 'Ошибка запроса');
}
}