2017 © Pedro Pelรกez
 

composer leetify

Leetify your messages! Leetify is a funny tool used to make any msgs like this: 'looks like this' -> '100kz 1ik3 +hiz'

image

romanitalian/leetify

Leetify your messages! Leetify is a funny tool used to make any msgs like this: 'looks like this' -> '100kz 1ik3 +hiz'

  • Thursday, September 21, 2017
  • by romanitalian
  • Repository
  • 1 Watchers
  • 2 Stars
  • 4 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Leetify

Leetify is a funny tool used to make any msgs like this: "looks like this" -> "100kz 1ik3 +hiz", (*1)

You can use composer scripts to invoke this package - Leetify. Just add it to you composer.json:, (*2)

    ...
    "require": {
        "romanitalian/leetify": "dev-master"
    }
    ...

Or after init composer - execute this:, (*3)

composer require romanitalian/leetify, (*4)

<?php
use Leet\Leetify;
use Leet\LeetifySimple;

require_once 'protected/autoload.php';

$out = array();

$str = '133+';
$out['Leetify'][$str] = Leetify::decode($str);

$str = 'leet';
$out['Leetify'][$str] = Leetify::encode($str);

$str = 'looks like this';
$out['Leetify'][$str] = Leetify::encode($str);

$str = 'terry';
$out['Leetify'][$str] = Leetify::encode($str);
Leetify::getInstance()->destroy();


$str = '133+';
$out['LeetifySimple'][$str] = LeetifySimple::decode($str, 'latin');

$str = 'leet';
$out['LeetifySimple'][$str] = LeetifySimple::encode($str);

$str = 'looks like this';
$out['LeetifySimple'][$str] = LeetifySimple::encode($str);

$str = 'terry';
$out['LeetifySimple'][$str] = LeetifySimple::encode($str);

$str = '3ะตะท4';
$out['LeetifySimple'][$str] = LeetifySimple::decode($str, 'cyrillic');

$str = 'ะถะตะทะป';
$out['LeetifySimple'][$str] = LeetifySimple::encode($str);

$str = 'ยซะœัะณะบะธะน leet โ€” ัั‚ะพ ะพั‡ะตะฝัŒ ะฒะตัะตะปะพยป';
$out['LeetifySimple'][$str] = LeetifySimple::encode($str);

$str = 'm99k11 l33t โ€” 3t0 0ch3n v35310.';
$out['LeetifySimple'][$str] = LeetifySimple::decode($str, 'cyrillic');

$str = "ะœั4ะบZะน 133+ โ€” ัั‚ะพ ะพ|-|ะตะฝ' ะฒะตัะต4ะพ";
$out['LeetifySimple'][$str] = LeetifySimple::decode($str);

$str = 'Shut the fuck up, noob. I owned your ass.';
$out['LeetifySimple'][$str] = LeetifySimple::encode($str);

var_dump($out);

/*
array (size=2)
  'Leetify' =>
    array (size=4)
      '133+' => string 'teet' (length=4)
      'leet' => string 'ะ’ะˆษ™e-|-' (length=10)
      'looks like this' => string '1ร˜o|(z ยฌ3y3|c& +I+Iยกes' (length=25)
      'terry' => string '~|~[-|2|`ฮป' (length=11)
  'LeetifySimple' =>
    array (size=10)
      '133+' => string 'leet' (length=4)
      'leet' => string '133+' (length=4)
      'looks like this' => string '100kz 1ik3 +hiz' (length=15)
      'terry' => string '+3rrj' (length=5)
      '3ะตะท4' => string 'eะตะทA' (length=6)
      'ะถะตะทะป' => string 'ะถะตะทะป' (length=8)
      'ยซะœัะณะบะธะน leet โ€” ัั‚ะพ ะพั‡ะตะฝัŒ ะฒะตัะตะปะพยป' => string 'ยซะœัะณะบะธะน 133+ โ€” ัั‚ะพ ะพั‡ะตะฝัŒ ะฒะตัะตะปะพยป' (length=56)
      'm99k11 l33t โ€” 3t0 0ch3n v35310.' => string 'm99kll leet โ€” etO Ochen ve5elO.' (length=33)
      'ะœั4ะบZะน 133+ โ€” ัั‚ะพ ะพ|-|ะตะฝ' ะฒะตัะต4ะพ' => string 'ะœัAะบSะน leet โ€” ัั‚ะพ ะพ|-|ะตะฝ' ะฒะตัะตAะพ' (length=49)
      'Shut the fuck up, noob. I owned your ass.' => string 'Zhu+ +h3 fuck up, n00b. I 0wn3d j0ur 4zz.' (length=41)
*/

The Versions

21/09 2017

dev-master

9999999-dev

Leetify your messages! Leetify is a funny tool used to make any msgs like this: 'looks like this' -> '100kz 1ik3 +hiz'

  Sources   Download

by Avatar romanitalian