다른 사용자가 편집하지 못하도록 docx 파일을 어떻게 잠그습니까?다른 사용자가 편집하지 못하도록 docx 파일을 어떻게 잠그습니까?
다른 사용자가 편집하지 못하도록 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
Reference
이 문제에 관하여(다른 사용자가 편집하지 못하도록 docx 파일을 어떻게 잠그습니까?다른 사용자가 편집하지 못하도록 docx 파일을 어떻게 잠그습니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/pcmagas/how-i-can-lock-a-docx-file-so-i-can-prevent-the-edit-from-another-users-482l
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
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");
Reference
이 문제에 관하여(다른 사용자가 편집하지 못하도록 docx 파일을 어떻게 잠그습니까?다른 사용자가 편집하지 못하도록 docx 파일을 어떻게 잠그습니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/pcmagas/how-i-can-lock-a-docx-file-so-i-can-prevent-the-edit-from-another-users-482l텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)