⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
psa
/
admin
/
plib
/
vendor
/
slim
/
psr7
/
src
/
View File Name :
Header.php
originalName = $originalName; $this->normalizedName = $normalizedName; $this->values = $values; } public function getOriginalName(): string { return $this->originalName; } public function getNormalizedName(): string { return $this->normalizedName; } public function addValue(string $value): self { $this->values[] = $value; return $this; } public function addValues(array|string $values): self { if (is_string($values)) { return $this->addValue($values); } $this->values = array_merge($this->values, $values); return $this; } public function getValues(): array { return $this->values; } }