Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php final class PhabricatorMailHeader extends Phobject { private $name; private ..
Decoded Output download
<?php
final class PhabricatorMailHeader
extends Phobject {
private $name;
private $value;
public function setName($name) {
$this->name = $name;
return $this;
}
public function getName() {
return $this->name;
}
public function setValue($value) {
$this->value = $value;
return $this;
}
public function getValue() {
return $this->value;
}
}
?>
Did this file decode correctly?
Original Code
<?php
final class PhabricatorMailHeader
extends Phobject {
private $name;
private $value;
public function setName($name) {
$this->name = $name;
return $this;
}
public function getName() {
return $this->name;
}
public function setValue($value) {
$this->value = $value;
return $this;
}
public function getValue() {
return $this->value;
}
}
Function Calls
None |
Stats
MD5 | fceea3102ec611b13afa1dbbd010e36b |
Eval Count | 0 |
Decode Time | 101 ms |