15 lines
410 B
PHP
15 lines
410 B
PHP
<?php
|
|
require __DIR__ . '/../../vendor/autoload.php';
|
|
|
|
use Zelda\EscposPhp\Printer;
|
|
use Zelda\EscposPhp\PrintConnectors\FilePrintConnector;
|
|
use Zelda\EscposPhp\CapabilityProfile;
|
|
|
|
$connector = new FilePrintConnector("php://stdout");
|
|
$profile = CapabilityProfile::load("default");
|
|
$printer = new Printer($connector, $profile);
|
|
|
|
$printer->text("Μιχάλης Νίκος\n");
|
|
$printer->cut();
|
|
$printer->close();
|