Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/vendor/rize/uri-template/src/Rize/UriTemplate/Node/Variable.php
Назад
<?php namespace Rize\UriTemplate\Node; class Variable extends Abstraction { /** * Variable name without modifier * e.g. 'term:1' becomes 'term'. */ public string $name; public array $options = ['modifier' => null, 'value' => null]; public function __construct(string $token, array $options = []) { parent::__construct($token); $this->options = $options + $this->options; // normalize var name e.g. from 'term:1' becomes 'term' $name = $token; if ($options['modifier'] === ':') { $name = strstr($name, $options['modifier'], true); } $this->name = $name; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка