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 /** * Joomlatools Framework - https://www.joomlatools.com/developer/framework/ * ..
Decoded Output download
<?php
/**
* Joomlatools Framework - https://www.joomlatools.com/developer/framework/
*
* @copyright Copyright (C) 2007 Johan Janssens and Timble CVBA. (http://www.timble.net)
* @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html>
* @link https://github.com/joomlatools/joomlatools-framework for the canonical source repository
*/
/**
* Column Database Schema
*
* @author Johan Janssens <https://github.com/johanjanssens>
* @package Koowa\Library\Database\Schema
*/
class KDatabaseSchemaColumn
{
/**
* Column name
*
* @var string
*/
public $name;
/**
* Column type
*
* @var string
*/
public $type;
/**
* Column length
*
* @var integer
*/
public $length;
/**
* Column scope
*
* @var string
*/
public $scope;
/**
* Column default value
*
* @var string
*/
public $default;
/**
* Required column
*
* @var bool
*/
public $required = false;
/**
* Is the column a primary key
*
* @var bool
*/
public $primary = false;
/**
* Is the column autoincremented
*
* @var bool
*/
public $autoinc = false;
/**
* Is the column unique
*
* @var bool
*/
public $unique = false;
/**
* Related index columns
*
* @var bool
*/
public $related = array();
/**
* Filter
*
* @var string
*/
public $filter;
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Joomlatools Framework - https://www.joomlatools.com/developer/framework/
*
* @copyright Copyright (C) 2007 Johan Janssens and Timble CVBA. (http://www.timble.net)
* @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html>
* @link https://github.com/joomlatools/joomlatools-framework for the canonical source repository
*/
/**
* Column Database Schema
*
* @author Johan Janssens <https://github.com/johanjanssens>
* @package Koowa\Library\Database\Schema
*/
class KDatabaseSchemaColumn
{
/**
* Column name
*
* @var string
*/
public $name;
/**
* Column type
*
* @var string
*/
public $type;
/**
* Column length
*
* @var integer
*/
public $length;
/**
* Column scope
*
* @var string
*/
public $scope;
/**
* Column default value
*
* @var string
*/
public $default;
/**
* Required column
*
* @var bool
*/
public $required = false;
/**
* Is the column a primary key
*
* @var bool
*/
public $primary = false;
/**
* Is the column autoincremented
*
* @var bool
*/
public $autoinc = false;
/**
* Is the column unique
*
* @var bool
*/
public $unique = false;
/**
* Related index columns
*
* @var bool
*/
public $related = array();
/**
* Filter
*
* @var string
*/
public $filter;
}
Function Calls
None |
Stats
MD5 | 9efac1667003cebba2195ad9204942f2 |
Eval Count | 0 |
Decode Time | 86 ms |