从Resume.docx中读取一些详细信息,如姓名,电子邮件,手机等

时间:2017-07-25 07:03:25

标签: php docx

我尝试从Resume.docx

获取一些细节

但我不知道该怎么做

我尝试了以下内容

1)

require( "class.filetotext.php" );
$docObj = new Filetotext( "Basic Sample Resume.docx" );
$return = $docObj -> convertToText();
echo $return;

2)

<?php
function read_file_docx($filename){

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


    if(!$filename || !file_exists($filename)) return false;

    $zip = zip_open($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);

    //echo $content;
    //echo "<hr>";
    //file_put_contents('1.xml', $content);

    $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;
}
$filename = "Resume.docx";// or /var/www/html/file.docx

但它以字符串格式返回我如何获得姓名,电子邮件,手机等详细信息

使用phpany other things

输出:

  

ResumeName:xxx xxxEmail:   xxx@yahoo.com移动号码:xxxxxxxxx0

1 个答案:

答案 0 :(得分:0)

好的,您拥有存储在您变量中的docx的内容 现在你必须&#34;搜索&#34;在其中使用strpos()explode()str_split()等功能

如果你提供结果字符串,我可以提供更多帮助。

无论如何,docx的内容必须在其数据中具有某种结构才能始终如一地操纵内容。

当然,作为csv的不同输入文件将更容易阅读。