芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/minscoop.com/system/ThirdParty/Kint/Zval/Representation/Representation.php
label = $label; if (null === $name) { $name = $label; } $this->setName($name); } public function getLabel(): string { if (\is_array($this->contents) && \count($this->contents) > 1) { return $this->label.' ('.\count($this->contents).')'; } return $this->label; } public function getName(): string { return $this->name; } public function setName(string $name): void { $this->name = \preg_replace('/[^a-z0-9]+/', '_', \strtolower($name)); } public function labelIsImplicit(): bool { return $this->implicit_label; } }