Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
$file = "test.pdf";
    $outpath = preg_replace("/\.pdf$/", "", $file).".txt";
   
    system("pdftotext ".escapeshellcmd($file), $ret);
    if ($ret == 0)
    {
        $value = file_get_contents($outpath);
        unlink($outpath);
        print $value;
    }
    if ($ret == 127)
        print "Could not find pdftotext tool.";
    if ($ret == 1)
        print "Could not find pdf file.";