PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Amir   Byte Run   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example file
Class: Byte Run
Encode and decode text switching characters
Author: By
Last change: credits
Date: 8 years ago
Size: 250 bytes
 

Contents

Class file image Download
<?php

require_once('ByteRun.Class.php');

// ByteRun Encoding
$_X='echo"amir";';
$obj = new ByteRun($_X);
echo
$obj->encode();

// ByteRun Decoding
//$_X='NWNoMiIxbTRyIjs=';
//$obj = new ByteRun($_X);
//echo $obj->decode();


?>