本文整理汇总了PHP中app\models\Books::insert方法的典型用法代码示例。如果您正苦于以下问题:PHP Books::insert方法的具体用法?PHP Books::insert怎么用?PHP Books::insert使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\models\Books
的用法示例。
在下文中一共展示了Books::insert方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: actionImportFiles
public function actionImportFiles()
{
if (\Yii::$app->request->getMethod() == 'GET') {
return json_encode($this->getFiles_FileSystemOnly(), JSON_UNESCAPED_UNICODE);
}
if (\Yii::$app->request->getMethod() == 'POST') {
$error = '';
$post = \Yii::$app->request->post('post');
$arr_added = [];
try {
foreach ($post as $f) {
$book = new Books(['scenario' => 'import']);
$book->filename = $book->title = $f;
$book->insert();
$arr_added[] = $f;
}
} catch (\Exception $e) {
return json_encode(['data' => $arr_added, 'result' => false, 'error' => $e->getMessage()], JSON_UNESCAPED_UNICODE);
}
return json_encode(['data' => $arr_added, 'result' => true, 'error' => ''], JSON_UNESCAPED_UNICODE);
}
}
示例2: add
private function add($attributes)
{
/* @var $book Books */
$book = new Books(['scenario' => 'add']);
$book->attributes = $attributes;
$book->favorite = $book->favorite == null ? 0 : $book->favorite;
$book->insert();
}