我取消注释
extension=php_fileinfo.dll
在php.ini(生产和开发)中,但仍然无法使用composer安装包。
当我运行php -m
时,我无法看到fileinfo模块。我正在使用xampp。
有人可以帮忙吗?
答案 0 :(得分:0)
在MAMP中找到了解决方案。
以PHP 7.1.5为例,但您可能使用的是其他版本。
除了在files <- list.files(pattern = ".xlsx")
data_xlsx_df <- map_df(set_names(files), function(file) {
file %>%
excel_sheets() %>%
set_names() %>%
map_df(
~ read_xlsx(path = file, sheet = .x, range = "H3"),
.id = "sheet")
}, .id = "file")
中编辑php.ini外,还需要在mamp\bin\php7.1.5\php.ini
中添加extension=php_fileinfo.dll
。注意 conf 文件夹。
在配置中,该文件似乎与正在运行的服务器无关,但实际上确实有所不同。