PHP code example of hectordufau / phppimaco
1. Go to this page and download the library: Download hectordufau/phppimaco 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/ */
hectordufau / phppimaco example snippets
composer
HLMI\PhpPimaco\Tag;
$tag = new Tag();
$tag->p("TAG 1");
use HLMI\PhpPimaco\Pimaco;
$pimaco = new Pimaco('6182');
$pimaco->addTag($tag);
$pimaco->output();
use HLMI\PhpPimaco\Tag;
use HLMI\PhpPimaco\Pimaco;
$tag = new Tag();
$tag->p("TAG 1");
$pimaco = new Pimaco('6182');
$pimaco->addTag($tag);
$pimaco->output();