如何使用PHPExcel删除Excel工作表

时间:2017-08-03 17:09:27

标签: php excel phpexcel

我正在尝试从Excel文件中删除一些工作表(2007),我挑战写入单元格或从单元格中获取值但我不挑战删除工作表

我试过这段代码

let endpoint = "http://localhost:80/Slim/index.php/logina";
let data = {
    email: username,
    password: password
};

let headers = new Headers(); 
headers.append('Content-Type', 'application/x-www-form-urlencoded');
let options= new RequestOptions({ 
        headers: headers
});
 return this.http.post(endpoint,data, options) 
    .map(response => response.json())

但执行后我的文件保持不变

如果你能给我一些帮助,我将感激不尽:)

1 个答案:

答案 0 :(得分:0)

由于工作表索引从0开始(而不是从1开始),因此没有表单索引将等于$nombreFeuille的值,因此此代码应该抛出异常。 由于您未在代码中的任何位置捕获该异常,因此它永远不会实例化编写器或保存文件