Skip to content

Instantly share code, notes, and snippets.

@estefanionsantos
Last active June 25, 2023 22:55
Show Gist options
  • Save estefanionsantos/7cade326d2b484ba5ef274b2b85b0cb1 to your computer and use it in GitHub Desktop.
Save estefanionsantos/7cade326d2b484ba5ef274b2b85b0cb1 to your computer and use it in GitHub Desktop.
Rubricate Div Widget 02
<?php
use Rubricate\Widget\DivWidget;
$div = new DivWidget('Name: %s | Country: %s | Century: %d ');
$div->setParam('Rainha Ginga');
$div->setParam('Angola');
$div->setParam(17);
echo $div->getElement();
# <div>Name: Queen Nzingha | Country: Angola | Century: 17 </div>
# EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment