PHP code example of rainflute / confluence-php-client
1. Go to this page and download the library: Download rainflute/confluence-php-client library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
rainflute / confluence-php-client example snippets
use Rainflute/ConfluenceClient/Client;
use Rainflute/ConfluenceClient/Curl;
use Rainflute/ConfluenceClient/Entity/ConfluencePage;
//Create and configure a curl web client
$curl = new Curl('confluence_host_url,'username','password');
//Create the Confluence Client
$client = new Client($curl);
//Create a confluence page
$page = new ConfluencePage();
//Configure your page
$page->setSpace('testSpaceKey')->setTitle('Test')->setContent('<p>test page</p>');
//Create the page in confluence in the test space
$client->createPage($page);
//Get the page we created
echo $client->selectPageBy([
'spaceKey' => 'testSpaceKey',
'title' => 'Test'
]);
bash
$ php composer.phar