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 echo pht('Populating pastes with mail keys...')."\n"; $table = new PhabricatorPast..

Decoded Output download

<?php

echo pht('Populating pastes with mail keys...')."
";

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

foreach (new LiskMigrationIterator($table) as $paste) {
  $id = $paste->getID();

  echo "P{$id}: ";
  if (!$paste->getMailKey()) {
    queryfx(
      $conn_w,
      'UPDATE %T SET mailKey = %s WHERE id = %d',
      $paste->getTableName(),
      Filesystem::readRandomCharacters(20),
      $id);
    echo pht('Generated Key')."
";
  } else {
    echo "-
";
  }
}

$table->saveTransaction();
echo pht('Done.')."
";
 ?>

Did this file decode correctly?

Original Code

<?php

echo pht('Populating pastes with mail keys...')."\n";

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

foreach (new LiskMigrationIterator($table) as $paste) {
  $id = $paste->getID();

  echo "P{$id}: ";
  if (!$paste->getMailKey()) {
    queryfx(
      $conn_w,
      'UPDATE %T SET mailKey = %s WHERE id = %d',
      $paste->getTableName(),
      Filesystem::readRandomCharacters(20),
      $id);
    echo pht('Generated Key')."\n";
  } else {
    echo "-\n";
  }
}

$table->saveTransaction();
echo pht('Done.')."\n";

Function Calls

pht 1

Variables

None

Stats

MD5 b393c5b4d6ac4219ed28b0e158af2866
Eval Count 0
Decode Time 87 ms