You are here

protected property simple_html_dom::$optional_closing_tags in simplehtmldom API 7

Same name and namespace in other branches
  1. 5.2 simplehtmldom/simple_html_dom.php \simple_html_dom::optional_closing_tags
  2. 6 simplehtmldom/simple_html_dom.php \simple_html_dom::optional_closing_tags

File

simplehtmldom/simple_html_dom.php, line 500

Class

simple_html_dom

Code

protected $optional_closing_tags = array(
  'tr' => array(
    'tr' => 1,
    'td' => 1,
    'th' => 1,
  ),
  'th' => array(
    'th' => 1,
  ),
  'td' => array(
    'td' => 1,
  ),
  'li' => array(
    'li' => 1,
  ),
  'dt' => array(
    'dt' => 1,
    'dd' => 1,
  ),
  'dd' => array(
    'dd' => 1,
    'dt' => 1,
  ),
  'dl' => array(
    'dd' => 1,
    'dt' => 1,
  ),
  'p' => array(
    'p' => 1,
  ),
  'nobr' => array(
    'nobr' => 1,
  ),
);