MLPHP is a set of PHP classes that provide connectivity to MarkLogic via PHP. It makes it easy to store XML, JSON, binary, and text documents, manage document metadata, and create sophisticated search queries on a web server running PHP (version 5.4 or greater).
MLPHP comes with API documentation and code examples to get you going. It communicates with MarkLogic using the server’s REST API. It requires MarkLogic 6 or later.
The API includes:
After installing and configuring MLPHP, you can load documents into MarkLogic with just a couple lines of PHP code:
$document = new MLPHPDocument($client); $document->setContentFile('myfile.xml')->write('/myfile.xml');
Searching is just as easy:
$search = new MLPHP\Search($client); $results = $search->retrieve('cat');
Installation instructions are here.
By continuing to use this website you are giving consent to cookies being used in accordance with the MarkLogic Privacy Statement.