我一直在尝试使用fgetcsv概念读取Xlsx文件。它适用于csv,但不适用于xlsx文件
事情是,它正在读取文件
Array
(
[0] => S����b��wIp� �[�������׀�4�c�W�s�c3�Y�i����Ѐ�& �g���ńA�8���'qt��]�%]>XC�<=�_���G%�����*
)
The website encountered an unexpected error. Please try again later.
这是我的代码,
$file = fopen($filePath, 'r');
if($file){
fgetcsv($file, 100000, ",");
while (($example = fgetcsv($file, 100000, ",")) !== FALSE){
echo '<pre>'; print_r($exampe);
}
}
我不想使用PHPEXCEL库文件来读取xlsx文件,我怎样才能解决上述问题。