PicoFeed\Filter\Attribute::toHtml PHP Méthode

toHtml() public méthode

Convert the attribute list to html.
public toHtml ( array $attributes ) : string
$attributes array Attributes
Résultat string
    public function toHtml(array $attributes)
    {
        $html = array();
        foreach ($attributes as $attribute => $value) {
            $html[] = sprintf('%s="%s"', $attribute, Filter::escape($value));
        }
        return implode(' ', $html);
    }

Usage Example

Exemple #1
0
 /**
  * Parse opening tag.
  *
  * @param resource $parser     XML parser
  * @param string   $tag        Tag name
  * @param array    $attributes Tag attributes
  */
 public function startTag($parser, $tag, array $attributes)
 {
     $this->empty = true;
     if ($this->tag->isAllowed($tag, $attributes)) {
         $attributes = $this->attribute->filter($tag, $attributes);
         if ($this->attribute->hasRequiredAttributes($tag, $attributes)) {
             $attributes = $this->attribute->addAttributes($tag, $attributes);
             $this->output .= $this->tag->openHtmlTag($tag, $this->attribute->toHtml($attributes));
             $this->empty = false;
         }
     }
     $this->empty_tags[] = $this->empty;
 }
All Usage Examples Of PicoFeed\Filter\Attribute::toHtml