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 HeraldCondition extends HeraldDAO { protected $ruleID; protected ..

Decoded Output download

<?php

final class HeraldCondition extends HeraldDAO {

  protected $ruleID;

  protected $fieldName;
  protected $fieldCondition;
  protected $value;

  protected function getConfiguration() {
    return array(
      self::CONFIG_SERIALIZATION => array(
        'value' => self::SERIALIZATION_JSON,
      ),
      self::CONFIG_TIMESTAMPS => false,
      self::CONFIG_COLUMN_SCHEMA => array(
        'fieldName' => 'text255',
        'fieldCondition' => 'text255',
        'value' => 'text',
      ),
      self::CONFIG_KEY_SCHEMA => array(
        'ruleID' => array(
          'columns' => array('ruleID'),
        ),
      ),
    ) + parent::getConfiguration();
  }

}
 ?>

Did this file decode correctly?

Original Code

<?php

final class HeraldCondition extends HeraldDAO {

  protected $ruleID;

  protected $fieldName;
  protected $fieldCondition;
  protected $value;

  protected function getConfiguration() {
    return array(
      self::CONFIG_SERIALIZATION => array(
        'value' => self::SERIALIZATION_JSON,
      ),
      self::CONFIG_TIMESTAMPS => false,
      self::CONFIG_COLUMN_SCHEMA => array(
        'fieldName' => 'text255',
        'fieldCondition' => 'text255',
        'value' => 'text',
      ),
      self::CONFIG_KEY_SCHEMA => array(
        'ruleID' => array(
          'columns' => array('ruleID'),
        ),
      ),
    ) + parent::getConfiguration();
  }

}

Function Calls

None

Variables

None

Stats

MD5 32a7a65104e700c4e1cc0b434d061872
Eval Count 0
Decode Time 111 ms