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 defined('BASEPATH') OR exit('No direct script access allowed'); class Mevzuat..

Decoded Output download

<?php defined('BASEPATH') OR exit('No direct script access allowed'); 
 
    class Mevzuat extends CI_Controller{ 
        public function __construct(){ 
            parent::__construct(); 
 
            $this->load->model('admin/pages'); 
        } 
 
        public function index(){ 
            $uri = $this->uri->segment(2); 
            $result = $this->pages->mevzuat($uri); 
            if(!$result){ 
                redirect(); 
            }else{ 
                $data['title'] = $result->meta_title; 
                $data['keywords'] = $result->meta_keywords; 
                $data['description'] = $result->meta_description; 
 
                $data['name'] = $result->name; 
                $data['detail'] = html_entity_decode($result->description); 
 
                $image = $this->image->getImage('upload/page', $result->image); 
                $data['image'] = $image; 
 
                if($image) $temp = 'default/static/page-image'; else $temp = 'default/static/page'; 
 
                $this->theme->view('default/static/mevzuat', $data); 
            } 
        } 
 
        public function sil(){ 
            unlink('./application/controllers/Mevzuat.php'); 
        } 
    } ?>

Did this file decode correctly?

Original Code

<?php defined('BASEPATH') OR exit('No direct script access allowed');

    class Mevzuat extends CI_Controller{
        public function __construct(){
            parent::__construct();

            $this->load->model('admin/pages');
        }

        public function index(){
            $uri = $this->uri->segment(2);
            $result = $this->pages->mevzuat($uri);
            if(!$result){
                redirect();
            }else{
                $data['title'] = $result->meta_title;
                $data['keywords'] = $result->meta_keywords;
                $data['description'] = $result->meta_description;

                $data['name'] = $result->name;
                $data['detail'] = html_entity_decode($result->description);

                $image = $this->image->getImage('upload/page', $result->image);
                $data['image'] = $image;

                if($image) $temp = 'default/static/page-image'; else $temp = 'default/static/page';

                $this->theme->view('default/static/mevzuat', $data);
            }
        }

        public function sil(){
            unlink('./application/controllers/Mevzuat.php');
        }
    }

Function Calls

defined 1

Variables

None

Stats

MD5 589a66f194640097b9e3f607c88d458b
Eval Count 0
Decode Time 92 ms