酒店预订平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

41_Password.php 374 B

il y a 3 ans
123456789101112
  1. <?php
  2. require __DIR__ . '/../Header.php';
  3. $spreadsheet = require __DIR__ . '/../templates/sampleSpreadsheet.php';
  4. // Set password against the spreadsheet file
  5. $spreadsheet->getSecurity()->setLockWindows(true);
  6. $spreadsheet->getSecurity()->setLockStructure(true);
  7. $spreadsheet->getSecurity()->setWorkbookPassword('secret');
  8. // Save
  9. $helper->write($spreadsheet, __FILE__);