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 $table = new PhabricatorRepositoryAuditRequest(); $conn_w = $table->establishConnec..

Decoded Output download

<?php

$table = new PhabricatorRepositoryAuditRequest();
$conn_w = $table->establishConnection('w');

echo pht('Removing duplicate Audit requests...')."
";
$seen_audit_map = array();
foreach (new LiskMigrationIterator($table) as $request) {
  $commit_phid = $request->getCommitPHID();
  $auditor_phid = $request->getAuditorPHID();
  if (isset($seen_audit_map[$commit_phid][$auditor_phid])) {
    $request->delete();
  }

  if (!isset($seen_audit_map[$commit_phid])) {
    $seen_audit_map[$commit_phid] = array();
  }

  $seen_audit_map[$commit_phid][$auditor_phid] = 1;
}

echo pht('Done.')."
";
 ?>

Did this file decode correctly?

Original Code

<?php

$table = new PhabricatorRepositoryAuditRequest();
$conn_w = $table->establishConnection('w');

echo pht('Removing duplicate Audit requests...')."\n";
$seen_audit_map = array();
foreach (new LiskMigrationIterator($table) as $request) {
  $commit_phid = $request->getCommitPHID();
  $auditor_phid = $request->getAuditorPHID();
  if (isset($seen_audit_map[$commit_phid][$auditor_phid])) {
    $request->delete();
  }

  if (!isset($seen_audit_map[$commit_phid])) {
    $seen_audit_map[$commit_phid] = array();
  }

  $seen_audit_map[$commit_phid][$auditor_phid] = 1;
}

echo pht('Done.')."\n";

Function Calls

None

Variables

None

Stats

MD5 db0c98aad8b8882fbe494a08c24c3b73
Eval Count 0
Decode Time 75 ms