Accessing Apache's Mime

Does PHP expose Apache's Mime-Type to extension mapping in any way shape or form. That is, Apache typically has a list of files extensions (.gif, .pdf) that it maps to a list of Mime-Types (image/gif, application/pdf, etc.) in a file typically called mime.types. Is there anyway to get a list of these mapings for the current running apache process via PHP? Lacking that, is there a way for

访问Apache的Mime

PHP是否以任何形式或形式将Apache的Mime-Type展示给扩展映射。 也就是说,Apache通常有一个文件扩展名列表(.gif,.pdf),它映射到一个名为mime.types的文件中的Mime类型列表(image / gif,application / pdf等)。 无论如何,通过PHP获取当前正在运行的apache进程的映射列表? 缺乏这个,有没有办法让PHP向Apache询问它使用的mime.type文件? 您可能将php作为CGI运行,但如果您使用的是mod_php,并且该文件可通过url访

php

My website has a functionality of downloading excel sheet. I'm using PHPExcel library with Codeigniter to create the .xlsx sheet. It works fine almost everywhere but in iPad/ iPhone Safari. The following error covers the screen. Safari Error Screenshot My code to download the file is following: ob_end_clean(); $filename='attendance_list.xlsx'; header('Content-Type: app

PHP

我的网站有一个下载excel工作表的功能。 我在Codeigniter中使用PHPExcel库来创建.xlsx表单。 它几乎可以在任何地方运行,但在iPad / iPhone Safari中运行良好 以下错误覆盖了屏幕。 Safari错误截图 我的代码下载文件如下: ob_end_clean(); $文件名= 'attendance_list.xlsx'; header('Content-Type:application / vnd.ms-excel'); header('Content-Disposition:attachment; filename =

PHP: Download file script not working on iPad

I have a file download script that I have written, which reads files from below public_html and allows the user to download them after checking to see if the user is logged in and that the file is a valid file for them to download. An issue I've recently come across is that on an iPad it just fails to do anything when the link is clicked. Example download file code after all the checks ha

PHP:下载文件脚本不适用于iPad

我有一个我编写的文件下载脚本,它从下面的public_html中读取文件,并允许用户在检查用户是否登录后下载它们,并且该文件是供他们下载的有效文件。 我最近遇到的一个问题是,在iPad上点击链接时,它只是无法做任何事情。 所有检查完成后的示例下载文件代码: header("Pragma: public"); header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("Cache-Control: private",false

Issues opening a downloaded excel file on an android tablet

I'm working on an application that generates an excel file with data from the system. The excel file generates and downloads fine on a desktop but when I try and download it on my android tablet it won't open. It downloads fine but when opening it, a message tells me it's not a valid MS Excel file. The document it's trying to download is being generated from a php script with

在Android平板电脑上打开下载的Excel文件的问题

我正在处理一个应用程序,该应用程序使用系统中的数据生成一个excel文件。 excel文件在桌面上生成并下载得很好,但是当我尝试在我的android平板电脑上下载它时,它无法打开。 它可以很好的下载,但是当打开时,一条消息告诉我这不是一个有效的MS Excel文件。 它正在尝试下载的文档是通过这些页面顶部的php脚本生成的: header('Pragma: public'); header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); header('Last-Modified:

Error: MIME type text/csv

I am using jQuery to recognise a click on a button which then fires a call to a file: window.location.href = "url"; This file queries the database, returns results then writes it to a CSV file. I have the following headers set: header('Content-Type: text/csv;'); header('Content-Disposition: attachment; filename=data.csv'); This works on all browsers except Chrome which returns the following

错误:MIME类型文本/ csv

我使用jQuery来识别点击按钮,然后触发一个文件的调用: window.location.href = "url"; 该文件查询数据库,返回结果然后将其写入CSV文件。 我设置了以下标题: header('Content-Type: text/csv;'); header('Content-Disposition: attachment; filename=data.csv'); 这适用于Chrome以外的所有浏览器,它在控制台日志“资源解释为文档但在MIME类型为text / csv:”url“”的情况下传输时返回以下错误。 奇怪的是,如果我直接调

phpexcel to download

hello i am new to phpexcel, and i was wondering if there is some way send the excel i have created to the clients download without saving it on my server or to delete it right after he downloads it i am trying to create an "export button" on a page that will give the user a "pop-up" with the excel that he wants that i have just created. now after i create the table i do :

phpexcel下载

你好我是phpexcel的新手,我想知道是否有某种方式可以将我创建的excel发送给客户端下载,而不必将其保存在我的服务器上,或者在他下载后立即删除它 我试图在页面上创建一个“导出按钮”,它会给用户一个“弹出窗口”,他想要我刚创建的excel。 现在我创建表后我做: $objXLS->getActiveSheet()->getColumnDimension("A")->setAutoSize(true); $objXLS->getActiveSheet()->getColumnDimension("B")->setAutoSiz

Mime types for uploading pdf in PHP in different browsers

I am creating an web application that allows users to upload pdf documents. The following is the code to check(Restrict) the document type to pdf. if (isset($_POST['submitbutton'])) { $name = $_FILES['myfile']['name']; $type = $_FILES['myfile']['type']; $size = $_FILES['myfile']['size']; $tmpname = $_FILES['myfile']['tmp_name']; $ext = substr($name, strrpos($name,'.')); //Get the ext

MIME类型用于在不同浏览器中以PHP上传PDF

我正在创建一个允许用户上传PDF文档的Web应用程序。 以下是检查(限制)文档类型为pdf的代码。 if (isset($_POST['submitbutton'])) { $name = $_FILES['myfile']['name']; $type = $_FILES['myfile']['type']; $size = $_FILES['myfile']['size']; $tmpname = $_FILES['myfile']['tmp_name']; $ext = substr($name, strrpos($name,'.')); //Get the extension of the selected file echo $type.' This is the typ

Uploading docx file in Zend Framework with mime type fails?

i am trying to upload resume to my website from users so i have resticted the file upload too doc,pdf,and docx ms word doc files are uploading fine along with pdf but docx files are coming in with application/zip mime type so file does not get uploaded how to do correct mime type checking so that docx file uploads as other files below is my code $config = Zend_Registry::get ( 'config'

在Zend Framework中使用MIME类型上传docx文件失败?

我正尝试从用户上传简历到我的网站 所以我也上传文件上传文件,pdf和docx ms word doc文件与pdf一起正常上传,但docx文件正在进入 应用程序/ zip mime类型,因此文件不会上传 如何做正确的MIME类型检查,以便docx文件作为其他文件上传 下面是我的代码 $config = Zend_Registry::get ( 'config' ); $files_path = $config->resume->path; $adapter = new Zend_File_Transfer ();

.rar, .zip files MIME Type

I'm developing a simple php upload script, and users can upload only ZIP and RAR files. What MIME types I should use to check $_FILES[x][type] ? (a complete list please) Thank you.. The answer from freedompeace: .rar application/x-rar-compressed, application/octet-stream .zip application/zip, application/octet-stream I would do a check on the file name too. Here is how you cou

.rar,.zip文件的MIME类型

我正在开发一个简单的php上传脚本,用户只能上传ZIP和RAR文件。 我应该用什么MIME类型来检查$_FILES[x][type] ? (请填写完整清单) 谢谢.. 自由和平的答案是: .rar application/x-rar-compressed, application/octet-stream .zip application/zip, application/octet-stream 我也会对文件名进行检查。 这里是你如何检查文件是RAR还是ZIP文件。 我通过创建一个快速命令行应用程序来测试它。 <?php if (is

PHP and Importing pylab

I have a PHP script that calls in a python program. Here is the php script: <?php $last_line = popen('/Library/Frameworks/Python.framework/Versions/Current/bin/python test.py', 'r'); $results = fgets($last_line); print $results; ?> and this is the content of test.py: test.py: import numpy as np from matplotlib.patches import Ellipse # import matplotlib.pyplot as

PHP和导入pylab

我有一个PHP脚本,调用python程序。 这是php脚本: <?php $last_line = popen('/Library/Frameworks/Python.framework/Versions/Current/bin/python test.py', 'r'); $results = fgets($last_line); print $results; ?> 这是test.py的内容: test.py: import numpy as np from matplotlib.patches import Ellipse # import matplotlib.pyplot as plt # from matplotlib.pyplot import fig