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 PhabricatorGeneralCachePurger extends PhabricatorCachePurger { con..
Decoded Output download
<?php
final class PhabricatorGeneralCachePurger
extends PhabricatorCachePurger {
const PURGERKEY = 'general';
public function purgeCache() {
$table = new PhabricatorMarkupCache();
$conn = $table->establishConnection('w');
queryfx(
$conn,
'TRUNCATE TABLE %T',
'cache_general');
}
}
?>
Did this file decode correctly?
Original Code
<?php
final class PhabricatorGeneralCachePurger
extends PhabricatorCachePurger {
const PURGERKEY = 'general';
public function purgeCache() {
$table = new PhabricatorMarkupCache();
$conn = $table->establishConnection('w');
queryfx(
$conn,
'TRUNCATE TABLE %T',
'cache_general');
}
}
Function Calls
None |
Stats
MD5 | 7adb672dbaaa55e1d2abc065761ebf91 |
Eval Count | 0 |
Decode Time | 83 ms |