fork download
  1. <?php
  2.  
  3. $contents = '{#
  4. <meta name="help_topic:label" content="Changing basic site settings"/>
  5. <meta name="help_topic:top_level"/>
  6. <meta name="help_topic:related" content="user.security_account_settings"/>
  7. #}';
  8.  
  9. $filename = sys_get_temp_dir() . '/template.html.twig';
  10.  
  11. file_put_contents($filename, $contents);
  12.  
  13. $tags = get_meta_tags($filename);
  14.  
  15. var_dump($tags);
  16.  
Success #stdin #stdout 0s 82560KB
stdin
Standard input is empty
stdout
array(3) {
  ["help_topic:label"]=>
  string(28) "Changing basic site settings"
  ["help_topic:top_level"]=>
  string(0) ""
  ["help_topic:related"]=>
  string(30) "user.security_account_settings"
}