Excel 与宏 [英] Excel with Macro

查看:43
本文介绍了Excel 与宏的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,我想下载一个包含宏的 Excel 表格.但我使用 PHP 脚本来下载 excel.是否可以在php中下载带有宏的excel表?

Hai i want to download an excel sheet which contain Macro. But i use Php script to downlaod the excel. Is it Possible to download an excel sheet with macro in php?

推荐答案

用宏获取 Excel 文件与不带宏获取 Excel 文件真的没有什么不同.您可以为此使用 CURL.

Fetching Excel file with macro is really not different from fetching the one without one. You can use CURL for that.

<?php
$ch = curl_init("http://www.example.com/you_excel_sheet.xls");
$fp = fopen("local_excel_sheet.txt", "w");

curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);

curl_exec($ch);
curl_close($ch);
fclose($fp);

这篇关于Excel 与宏的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆