first commit
This commit is contained in:
12
vendor/phpoffice/phpspreadsheet/samples/Basic/41_Password.php
vendored
Normal file
12
vendor/phpoffice/phpspreadsheet/samples/Basic/41_Password.php
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
require __DIR__ . '/../Header.php';
|
||||
$spreadsheet = require __DIR__ . '/../templates/sampleSpreadsheet.php';
|
||||
|
||||
// Set password against the spreadsheet file
|
||||
$spreadsheet->getSecurity()->setLockWindows(true);
|
||||
$spreadsheet->getSecurity()->setLockStructure(true);
|
||||
$spreadsheet->getSecurity()->setWorkbookPassword('secret');
|
||||
|
||||
// Save
|
||||
$helper->write($spreadsheet, __FILE__);
|
||||
Reference in New Issue
Block a user