testHtmlContent.php 283 B

12345678910
  1. <?php
  2. function testHtmlContent($arg1, $arg2) {
  3. DBG::log([$arg1, $arg2], 'array', "testHtmlContent");
  4. $dom = new DOMDocument();
  5. $tmp = $dom->createDocumentFragment();
  6. $tmp->appendXML(" <b> args:</b>: <ul><li>arg1: {$arg1}</li><li>arg2: {$arg2}</li></ul> TEST");
  7. return $tmp;
  8. }