Last active
June 25, 2023 22:55
-
-
Save estefanionsantos/7cade326d2b484ba5ef274b2b85b0cb1 to your computer and use it in GitHub Desktop.
Rubricate Div Widget 02
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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