Home
last modified time | relevance | path

Searched refs:charset (Results 1 – 25 of 81) sorted by relevance

1234

/template/twigstarter/vendor/twig/twig/src/Runtime/
DEscaperRuntime.php30 private $charset = 'UTF-8', argument
95 * @param string|null $charset The charset
100 …public function escape($string, string $strategy = 'html', ?string $charset = null, bool $autoesca… argument
137 $charset = $charset ?: $this->charset;
143 if ('UTF-8' === $charset) {
167 if (isset($htmlspecialcharsCharsets[$charset])) {
168 return htmlspecialchars($string, \ENT_QUOTES | \ENT_SUBSTITUTE, $charset);
171 if (isset($htmlspecialcharsCharsets[strtoupper($charset)])) {
173 $htmlspecialcharsCharsets[$charset] = true;
175 return htmlspecialchars($string, \ENT_QUOTES | \ENT_SUBSTITUTE, $charset);
[all …]
/template/twigstarter/vendor/twig/twig/src/
DMarkup.php31 private ?string $charset; variable in Twig\\Markup
33 public function __construct($content, $charset) argument
36 $this->charset = $charset;
46 return $this->charset;
55 return mb_strlen($this->content, $this->charset);
DEnvironment.php53 private $charset; variable in Twig\\Environment
134 EscaperRuntime::class => function () { return new EscaperRuntime($this->charset); },
614 public function setCharset(string $charset) argument
616 if ('UTF8' === $charset = strtoupper($charset ?: '')) {
618 $charset = 'UTF-8';
621 $this->charset = $charset;
626 return $this->charset;
/template/twigstarter/vendor/twig/twig/src/Extension/
DCoreExtension.php454 public static function random(string $charset, $values = null, $max = null) argument
481 if ('UTF-8' !== $charset) {
482 $values = self::convertEncoding($values, 'UTF-8', $charset);
489 if ('UTF-8' !== $charset) {
491 $values[$i] = self::convertEncoding($value, $charset, 'UTF-8');
757 …public static function slice(string $charset, $item, $start, $length = null, $preserveKeys = false) argument
779 return mb_substr((string) $item, $start, $length, $charset);
791 public static function first(string $charset, $item) argument
793 $elements = self::slice($charset, $item, 0, 1, false);
807 public static function last(string $charset, $item) argument
[all …]
DEscaperExtension.php146 $callable = function ($string, $charset) use ($callable) {
147 return $callable($this->environment, $string, $charset);
/template/twigstarter/vendor/twig/twig/src/Resources/
Descaper.php34 function twig_escape_filter(Environment $env, $string, $strategy = 'html', $charset = null, $autoes… argument
38 … return $env->getRuntime(EscaperRuntime::class)->escape($string, $strategy, $charset, $autoescape);
/template/mikio/inc/
H A Dsimple_html_dom.php1677 $charset = null;
1683 $charset = $matches[1];
1687 . $charset
1693 if (empty($charset)) {
1714 $charset = $matches[1];
1725 $charset = 'ISO-8859-1';
1731 if (empty($charset)) {
1734 $charset = $meta->charset;
1736 $debug_object->debug_log(2, 'meta charset: ' . $charset);
1741 if (empty($charset)) {
[all …]
/template/bootstrap3/inc/
Dsimple_html_dom.php1671 $charset = null;
1677 $charset = $matches[1];
1681 . $charset
1687 if (empty($charset)) {
1708 $charset = $matches[1];
1719 $charset = 'ISO-8859-1';
1725 if (empty($charset)) {
1728 $charset = $meta->charset;
1730 $debug_object->debug_log(2, 'meta charset: ' . $charset);
1735 if (empty($charset)) {
[all …]
/template/strap/vendor/dragonmantank/cron-expression/
H A D.editorconfig4 charset = utf-8
/template/strap/vendor/carica/phpcss/
H A D.editorconfig10 charset = utf-8
/template/bootstrap3/
D.editorconfig9 charset = utf-8
/template/writr/
H A D.editorconfig9 charset = utf-8
/template/typowiki/typowiki/scss/
DtypoUI.scss1 @charset 'utf-8';
/template/breeze/bower_components/gumby/sass/
Dgumby.scss19 @charset "UTF-8";
/template/strap/resources/theme/default/pages/partials/
H A Dhead-partial.hbs1 <meta charset="utf-8">
/template/breeze/sass/
Dgumby.scss19 @charset "UTF-8";
/template/strap/vendor/symfony/polyfill-mbstring/
H A Dbootstrap.php25 …string, $charset = null, $transfer_encoding = null, $newline = "\r\n", $indent = 0) { return p\Mbs… argument
H A Dbootstrap80.php21charset = null, ?string $transfer_encoding = null, ?string $newline = "\r\n", ?int $indent = 0): s… argument
/template/twigstarter/vendor/symfony/polyfill-mbstring/
Dbootstrap.php25 …string, $charset = null, $transfer_encoding = null, $newline = "\r\n", $indent = 0) { return p\Mbs… argument
Dbootstrap80.php21charset = null, ?string $transfer_encoding = null, ?string $newline = "\r\n", ?int $indent = 0): s… argument
/template/my_little_forum/
Dmlf.css1 @charset "utf-8";
/template/dynamic_template/
Dcustom.css1 @charset "utf-10";
Dcustom1152.css1 @charset "utf-9";
Dfbcustom.css1 @charset "utf-8";
Dcustom800.css1 @charset "utf-8";

1234