]>
git.immae.eu Git - github/wallabag/wallabag.git/blob - vendor/twig/twig/lib/Twig/Markup.php
4 * This file is part of Twig.
6 * (c) 2010 Fabien Potencier
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
13 * Marks a content as safe.
15 * @author Fabien Potencier <fabien@symfony.com>
17 class Twig_Markup
implements Countable
22 public function __construct($content, $charset)
24 $this->content
= (string) $content;
25 $this->charset
= $charset;
28 public function __toString()
30 return $this->content
;
33 public function count()
35 return function_exists('mb_get_info') ? mb_strlen($this->content
, $this->charset
) : strlen($this->content
);