PHPExcel读取密码表格

PHPExcel没有这个功能,需要用到其他的工具解密Excel,再用Excel去读取。

require_once('PHPDecryptXLSXWithPassword.php');
$encryptedFilePath = 'hello world.xlsx';
$password = 'mypassword'; // password to "open" the file
$decryptedFilePath = 'temp_path_to_decrypted_file.xlsx';
decrypt($encryptedFilePath, $password, $decryptedFilePath);
//再用PHPExcel去读取解密之后的

从这里下载PHPDecryptXLSXWithPassword项目https://github.com/jaydadhania08/PHPDecryptXLSXWithPassword

若文章对您有帮助,帮忙点个赞!

0
-5
发布时间 2022-12-09 20:32:56
0 条回复(回复会通过微信通知作者)
点击加载更多评论
登录 后再进行评论
(微信扫码即可登录,无需注册)