Skip to content

Instantly share code, notes, and snippets.

@asika32764
Created February 28, 2013 11:18
Show Gist options
  • Select an option

  • Save asika32764/5056045 to your computer and use it in GitHub Desktop.

Select an option

Save asika32764/5056045 to your computer and use it in GitHub Desktop.
<?php
public static function read($file)
{
shell_exec("/usr/bin/pdftotext {$file} {$filetmp}.txt") ;
$output = file_get_contents("{$filetmp}.txt");
return $output ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment