I'm using:
$results = file_get_contents("email_notebook.pdf"
echo $results;
in an attempt to return just the text portion of the pdf file and save it to a variable. I've looked around but can't find an easy function, and this only returns "??«Ú?¢=¶º£sMWwÏÚÞuØ°qÓæ-" type of info...
My goal is to output either a string or an array of the text found in a pdf file...
Any suggestions?
$results = file_get_contents("email_notebook.pdf"
echo $results;
in an attempt to return just the text portion of the pdf file and save it to a variable. I've looked around but can't find an easy function, and this only returns "??«Ú?¢=¶º£sMWwÏÚÞuØ°qÓæ-" type of info...
My goal is to output either a string or an array of the text found in a pdf file...
Any suggestions?