您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

21 行
343B

  1. <?php
  2. abstract class HTMLPurifier_AttrDef_URI_Email extends HTMLPurifier_AttrDef
  3. {
  4. /**
  5. * Unpacks a mailbox into its display-name and address
  6. * @param string $string
  7. * @return mixed
  8. */
  9. public function unpack($string)
  10. {
  11. // needs to be implemented
  12. }
  13. }
  14. // sub-implementations
  15. // vim: et sw=4 sts=4