UnlemBilisim / officeread by orgenus

doc, docx, xlsx, pptx reader. Laravel 5.x
30
0
2
Package Data
Maintainer Username: orgenus
Maintainer Contact: obasli@unlembilisim.com (Orhan Gazi Başlı)
Package Create Date: 2016-12-12
Package Last Update: 2016-12-12
Language: PHP
License: MIT
Last Refreshed: 2024-03-26 03:05:37
Package Statistics
Total Downloads: 30
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0
    composer require unlembilisim/officeread "@dev"

config/app.php

    ....
    UnlemBilisim\OfficeRead\OrgeReaderServiceProvider::class,
use UnlemBilisim\OfficeRead\Conversion;
.....

$conv = new Conversion(public_path('file.doc'));
$text = $conv->convertToText();
echo $text;