PHP Obfuscator
PHP混淆
JS混淆
知识库
联系我
请将需要混淆的代码复制到下方输入框,然后点击“混淆”按钮即可,更多注意事项请
点击查看
。
<?php class Obfuscator { private $name = 'www.phpobfuscator.cn'; private string $content; public function run() { return $this->obfuscate($this->content); } private function obfuscate($content): string { $result = $this->name; $result .= $content; return $result; } public function getContent(): string { return $this->content; } public function setContent(string $content) { $this->content = $content; return $this; } } $obfuscator = new Obfuscator(); $result = $obfuscator->setContent("<?php echo 'test';")->run(); echo $result;
混淆
复制结果
保存为文件
清空