Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/252.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 将Excel文件转换为文本文件时显示的错误消息_Php - Fatal编程技术网

Php 将Excel文件转换为文本文件时显示的错误消息

Php 将Excel文件转换为文本文件时显示的错误消息,php,Php,我找到了一个脚本,可以将.doc、.docx和.xls/.xlsx文件转换为文本格式。它正在成功地将.doc和.docx文件转换为文本格式。但当我试图转换Excel文件时,它会显示以下错误消息 你知道为什么它会向我显示此错误消息,以及如何修复它吗?多谢各位 错误消息: Warning: Missing argument 1 for DocxConversion::xlsx_to_text(), called in D:\software installed\xampp\htdocs\contac

我找到了一个脚本,可以将.doc、.docx和.xls/.xlsx文件转换为文本格式。它正在成功地将.doc和.docx文件转换为文本格式。但当我试图转换Excel文件时,它会显示以下错误消息

你知道为什么它会向我显示此错误消息,以及如何修复它吗?多谢各位

错误消息:

Warning: Missing argument 1 for DocxConversion::xlsx_to_text(), called in D:\software installed\xampp\htdocs\contact-management\class-free.php on line 105 and defined in D:\software installed\xampp\htdocs\contact-management\class-free.php on line 48

Notice: Undefined variable: input_file in D:\software installed\xampp\htdocs\contact-management\class-free.php on line 52

Warning: ZipArchive::open(): Empty string as source in D:\software installed\xampp\htdocs\contact-management\class-free.php on line 52    
Php类(Class-free.Php):

<?php
class DocxConversion{
    private $filename;

    public function __construct($filePath) {
        $this->filename = $filePath;
    }

    private function read_doc() {
        $doc = new doc;
        $doc->read($this->filename);
        return $doc->parse();
    }

    private function read_docx(){

        $striped_content = '';
        $content = '';

        $zip = zip_open($this->filename);

        if (!$zip || is_numeric($zip)) return false;

        while ($zip_entry = zip_read($zip)) {

            if (zip_entry_open($zip, $zip_entry) == FALSE) continue;

            if (zip_entry_name($zip_entry) != "word/document.xml") continue;

            $content .= zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));

            zip_entry_close($zip_entry);
        }// end while

        zip_close($zip);

        $content = str_replace('</w:r></w:p></w:tc><w:tc>', " ", $content);
        $content = str_replace('</w:r></w:p>', "\r\n", $content);
        $striped_content = strip_tags($content);

        return $striped_content;
    }

 /************************excel sheet************************************/

function xlsx_to_text($input_file){
    $xml_filename = "xl/sharedStrings.xml"; //content file name
    $zip_handle = new ZipArchive;
    $output_text = "";
    if(true === $zip_handle->open($input_file)){
        if(($xml_index = $zip_handle->locateName($xml_filename)) !== false){
            $xml_datas = $zip_handle->getFromIndex($xml_index);
            $xml_handle = DOMDocument::loadXML($xml_datas, LIBXML_NOENT | LIBXML_XINCLUDE | LIBXML_NOERROR | LIBXML_NOWARNING);
            $output_text = strip_tags($xml_handle->saveXML());
        }else{
            $output_text .="";
        }
        $zip_handle->close();
    }else{
    $output_text .="";
    }
    return $output_text;
}

/*************************power point files*****************************/
function pptx_to_text($input_file){
    $zip_handle = new ZipArchive;
    $output_text = "";
    if(true === $zip_handle->open($input_file)){
        $slide_number = 1; //loop through slide files
        while(($xml_index = $zip_handle->locateName("ppt/slides/slide".$slide_number.".xml")) !== false){
            $xml_datas = $zip_handle->getFromIndex($xml_index);
            $xml_handle = DOMDocument::loadXML($xml_datas, LIBXML_NOENT | LIBXML_XINCLUDE | LIBXML_NOERROR | LIBXML_NOWARNING);
            $output_text .= strip_tags($xml_handle->saveXML());
            $slide_number++;
        }
        if($slide_number == 1){
            $output_text .="";
        }
        $zip_handle->close();
    }else{
    $output_text .="";
    }
    return $output_text;
}


    public function convertToText() {

        if(isset($this->filename) && !file_exists($this->filename)) {
           // return "File Not exists";
        }

        $fileArray = pathinfo($this->filename);
        $file_ext  = $fileArray['extension'];
        if($file_ext == "doc" || $file_ext == "docx" || $file_ext == "xlsx" || $file_ext == "pptx")
        {
            if($file_ext == "doc") {
                return $this->read_doc();
            } elseif($file_ext == "docx") {
                return $this->read_docx();
            } elseif($file_ext == "xlsx") {
                return $this->xlsx_to_text();
            }elseif($file_ext == "pptx") {
                return $this->pptx_to_text();
            }
        } else {
            return "Invalid File Type";
        }
    }

}

//$docObj = new DocxConversion("test102.doc");
//$docObj = new DocxConversion("content.doc");
//$docObj = new DocxConversion("english.doc");
//$docObj = new DocxConversion("content.docx");
//$docObj = new DocxConversion("test.xlsx");
//$docObj = new DocxConversion("test.pptx");
//echo $docText= $docObj->convertToText();

?>

问题出在一个
convertToText()
方法中,该方法调用不同的转换器而不带参数,而它们都需要
$input\u file
参数

此修复程序必须使其正常工作:

if($file_ext == "doc" || $file_ext == "docx" || $file_ext == "xlsx" || $file_ext == "pptx") {
   if($file_ext == "doc") {
      return $this->read_doc($this->filename);
   } elseif($file_ext == "docx") {
      return $this->read_docx($this->filename);
   } elseif($file_ext == "xlsx") {
      return $this->xlsx_to_text($this->filename);
   }elseif($file_ext == "pptx") {
      return $this->pptx_to_text($this->filename);
   } else {
      return "Invalid File Type";
   }
}
另外,更改此行:

$xml_handle = DOMDocument::loadXML($xml_datas, LIBXML_NOENT | LIBXML_XINCLUDE | LIBXML_NOERROR | LIBXML_NOWARNING);
使用此代码:

$xml_handle = new DOMDocument();
$xml_handle->loadXML($xml_datas, LIBXML_NOENT | LIBXML_XINCLUDE | LIBXML_NOERROR | LIBXML_NOWARNING);
因为
DOMDocument::loadXML(..)
是一个实例方法。它的原型是:

public mixed loadXML ( string $source [, int $options = 0 ] )

有关详细信息,请参见。

请向我们展示您的代码,它调用
xlsx\u to\u text
method@wingsofovnia我将class-free.php脚本上传到我的问题中。在这里可以找到名为
xlsx\u to\u text
方法的函数。谢谢。@wingsofovnia此函数由Php注释标记,如
/***************************************************************************************/
是的,我理解)对不起)谢谢。我正在尝试。哦,太好了!!它正在工作,但显示以下错误消息
严格标准:不应静态调用非静态方法DOMDocument::loadXML(),假设$this来自第55行的D:\software installed\xampp\htdocs\contact management\class-free.php中的不兼容上下文。