| PHP |
|---|
|
public function Tags(string $tag, ?string $text, int $indent , bool $addBreak = false) |
| PHP |
|---|
include_once "LJCRoot.php";
$prefix = RelativePrefix();
include_once "$prefix/LJCPHPCommon/LJCTextLib.php";
$builder = new StringBuilder();
$builder->AppendTags("First", "FirstValue", 0, true);
$builder->AppendTags("Second", "SecondValue", 1, true);
// $text =
// <First>FirstValue</First><br />
// <Second>SecondValue</Second><br />
$text = $builder->ToString();
|