Skip to content
This repository has been archived by the owner on Dec 5, 2021. It is now read-only.

krewenki/php-docraptor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 

Repository files navigation

PHP-DocRaptor

PHP-DocRaptor is a simple consumer class for DocRaptor.com You will need a DocRaptor account before you can use the class, as it requires a valid API key.

###Usage $docraptor = new DocRaptor(YOUR_API_KEY); $docraptor->setDocumentContent('

Hello!

')->setDocumentType('pdf')->setTest(true)->setName('output.pdf'); $file = $docraptor->fetchDocument();

Optionally, the fetchDocument() method takes a filename as an argument. If you provide a filename, the class will attempt to write the returned value to the file you provided.

###Options

####HTTPS or HTTP By default, PHP-DocRaptor submits requests over https. You can choose to submit via http, if that's your preference, by passing an argument to the setSecure() method (true for https, false for http):

$docraptor = new DocRaptor(YOUR_API_KEY);
$docraptor->setSecure(false)

About

PHP consumer for the DocRaptor.com API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages