다른 사용자가 편집하지 못하도록 docx 파일을 어떻게 잠그습니까?다른 사용자가 편집하지 못하도록 docx 파일을 어떻게 잠그습니까?

1543 단어 helplaravelphpphpword

다른 사용자가 편집하지 못하도록 docx 파일을 어떻게 잠그습니까?


11월 17일 20일.
설명: 1
정답: 0
0

나는 다음 컨트롤러를 만들어서 docx 문서를 값으로 채웠다.
namespace App\Controllers\Services
use App\Controllers\BaseController;
use Illuminate\Support\Facades\Response;

use PhpOffice\PhpWord\TemplateProcessor;
use PhpOffice\PhpWord\PhpWord;

class Contract extends BaseController
{
    public function getContract()
    {
        $file = storage_path()."/contracts/contract.docx";
        $tmpFile = storage_path()."/contracts/output.docx";

        $template = new TemplateProcessor($file);
        $template->setValue('COMP_NAME',"LOREM IPSUM INC");
        $template->setValue('ADDRESS',"Nowhere Str Tsastikistan");
        $template->saveAs($tmpFile);

        return Response::make("OK");

Open Full Question

좋은 웹페이지 즐겨찾기