I copied php’s sources from a Debian server to a windows environment (with wamp). There is a couple of calls to pdf_open a function which isn’t declare anywhere, even not in an included library.
I’d like to make this code work on my environment but Google searches didn’t get me any answer.
Maybe it is a PHP version issue since the Debian runs PHP 4 and I have PHP 5.3 on local?
I copied php’s sources from a Debian server to a windows environment (with wamp).
Share
It’s a php native function but it is deprecated, use
pdf_new()andpdf_open_file()instead.