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