mgufrone / pdf-to-html

PDF to HTML PHP Class using Poppler-Utils
MIT License
176 stars 89 forks source link

Windows NT require double-quotes instead of single-quotes #23

Closed ncjoes closed 8 years ago

ncjoes commented 8 years ago

Windows OS require double-quotes for paths when there are spaces or other non-alphanumeric characters in the path.

Line 26 of class Gufy\PdfToHtml\Pdf uses single quotes, which I guess is compatible with Linux, but not Windows.

$content = shell_exec($this->bin()." '".$this->file."'");