| 12345678910 |
- <?php
- function testHtmlContent($arg1, $arg2) {
- DBG::log([$arg1, $arg2], 'array', "testHtmlContent");
- $dom = new DOMDocument();
- $tmp = $dom->createDocumentFragment();
- $tmp->appendXML(" <b> args:</b>: <ul><li>arg1: {$arg1}</li><li>arg2: {$arg2}</li></ul> TEST");
- return $tmp;
- }
|