本文整理汇总了PHP中Attachments::query方法的典型用法代码示例。如果您正苦于以下问题:PHP Attachments::query方法的具体用法?PHP Attachments::query怎么用?PHP Attachments::query使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Attachments
的用法示例。
在下文中一共展示了Attachments::query方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: attachments
public function attachments()
{
/** @var myModel $this */
return $this->make('attachments', function () {
return Attachments::query()->where('attachable_id = :id:', ['id' => $this->id])->andWhere('attachable_type = :type:', ['type' => get_class($this)])->orderBy('created_at DESC')->execute();
});
}
示例2: createZipFile
public function createZipFile(array $file_Ids, $filename)
{
$files = Attachments::query()->inWhere('attachable_id', $file_Ids)->andWhere('attachable_type =:type:', ['type' => 'Files'])->leftJoin('Files', 'file.id = Attachments.attachable_id', 'file')->columns(['Attachments.*', 'file.*'])->execute();
$path = 'E:\\php\\standard\\public/';
$zip = new ZipArchive();
if ($zip->open($path . $filename, ZIPARCHIVE::CREATE) !== TRUE) {
dd('无法生成ZIP文件,请检查是否具有写权限');
}
foreach ($files as $row) {
$zip->addFile($path . $row->attachments->url, $row->file->title . '/' . $row->attachments->name);
$zip->addFromString($row->file->title . '/info.txt', $this->getFileInfo($row->file));
//@todo 将来用能够代表文档的数据形式来替代
}
$zip->close();
return $filename;
}