PHP code example of bureaupartners / pdfgrep
1. Go to this page and download the library: Download bureaupartners/pdfgrep library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
bureaupartners / pdfgrep example snippets
use BureauPartners\pdfgrep\pdfgrep;
$pdfgrep = new pdfgrep('Document.pdf', 'Dog');
$pdfgrep->getFirstMatch(); // Returns first match in the document
$pdfgrep->getMatches(); // Returns all the matches
$pdfgrep->getPageNumbers(); // Returns all page numbers with a match