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 PhabricatorCountdown(); $conn_w = $table->establishConnection('w'); $i..

Decoded Output download

<?php

$table = new PhabricatorCountdown();
$conn_w = $table->establishConnection('w');
$iterator = new LiskMigrationIterator($table);
foreach ($iterator as $countdown) {
  $id = $countdown->getID();

  echo pht('Adding mail key for countdown %d...', $id);
  echo "
";

  queryfx(
    $conn_w,
    'UPDATE %T SET mailKey = %s WHERE id = %d',
    $table->getTableName(),
    Filesystem::readRandomCharacters(20),
    $id);
}
 ?>

Did this file decode correctly?

Original Code

<?php

$table = new PhabricatorCountdown();
$conn_w = $table->establishConnection('w');
$iterator = new LiskMigrationIterator($table);
foreach ($iterator as $countdown) {
  $id = $countdown->getID();

  echo pht('Adding mail key for countdown %d...', $id);
  echo "\n";

  queryfx(
    $conn_w,
    'UPDATE %T SET mailKey = %s WHERE id = %d',
    $table->getTableName(),
    Filesystem::readRandomCharacters(20),
    $id);
}

Function Calls

None

Variables

None

Stats

MD5 f9cf8dacd2fb32d8c17d9b06494c42aa
Eval Count 0
Decode Time 103 ms