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 class Aluno{ public $nome; public $matricula; public $endereco; //construto..

Decoded Output download

<?php 
class Aluno{ 
	public $nome; 
	public $matricula; 
	public $endereco; 
	//construtor da classe 
	function Aluno(){ 
		$this->preparaAluno(); 
	} 
 
	function preparaAluno(){ 
		$this->nome = "Renne"; 
		$this->matricula= "99999999999"; 
		$this->endereco = "Lago Sul, Brasilia - DF"; 
	} 
 
} ?>

Did this file decode correctly?

Original Code

<?php
class Aluno{
	public $nome;
	public $matricula;
	public $endereco;
	//construtor da classe
	function Aluno(){
		$this->preparaAluno();
	}

	function preparaAluno(){
		$this->nome = "Renne";
		$this->matricula= "99999999999";
		$this->endereco = "Lago Sul, Brasilia - DF";
	}

} ?>

Function Calls

None

Variables

None

Stats

MD5 e847b43d27283e09d62673845fee3419
Eval Count 0
Decode Time 88 ms