我已经开发了一些代码来从PHP文档中读取标记信息。我想知道如何从word文档中读取文件名并将其存储在数据库表中?我知道如何附加到数据库表但不知道如何检索文件名..
我的代码:
echo "Keywords : " . $docxmeta->getKeywords() . "<br>";
$Keywords = $docxmeta->getKeywords();
?>
我试图做$Filename = $docxmeta ->getFileName();
这不起作用,我敢肯定如果有人能帮助我,必须有另一种方法吗?
答案 0 :(得分:0)
您可以扫描目录,它将返回一个文件名数组。这对你有帮助吗?
<?php
$dir = '/tmp';
$files1 = scandir($dir);
print_r($files1);
?>