fork(1) download
  1. <?php
  2.  
  3. $str = '{hook-contact id="220" sale="Новое направление"}';
  4. $str[0] = '<';
  5. $str[strlen($str)-1] = '/';
  6. $xml = new SimpleXMLElement("<i>{$str}></i>");
  7. var_dump($xml);
  8.  
Success #stdin #stdout 0s 52488KB
stdin
Standard input is empty
stdout
object(SimpleXMLElement)#1 (1) {
  ["hook-contact"]=>
  object(SimpleXMLElement)#2 (1) {
    ["@attributes"]=>
    array(2) {
      ["id"]=>
      string(3) "220"
      ["sale"]=>
      string(33) "Новое направление"
    }
  }
}