PHP Classes

File: tests/siyakat_encode.php

Recommend this page to a friend!
  Classes of Ali YILMAZ   Mind Framework   tests/siyakat_encode.php   Download  
File: tests/siyakat_encode.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Mind Framework
Framework that implements several design patterns
Author: By
Last change:
Date: 1 year ago
Size: 1,656 bytes
 

Contents

Class file image Download
<?php

require_once '../src/Mind.php';

$Mind = new Mind();

$data = 'Türkiye\'de, yakla??k 10.000 bitki türü yeti?ir. Bu bitki türlerinin yakla??k 3.000\'i ise Türkiye\'ye endemiktir. Bu özelli?i ile Türkiye, tüm Avrupa\'dakinden daha fazla endemik bitki türüne sahiptir.';
$miftah = array(
    array(
       
'1'=>'elif', '2'=>'selim', '3'=>'gümü?lük', '4'=>'destan', '5'=>'abdulhamid',
       
'6'=>'cuma', '7'=>'mustafakemal', '8'=>'cem', '9'=>'teras', '0'=>'cumhuriyet',
       
'a'=>'tur?u', 'b'=>'rakip', 'c'=>'silüet', 'd'=>'turan', 'e'=>'bal', 'f'=>'sar?'
   
),
    array(
       
's' => '.-', '(' => '-...', 'a' => '-.-.', '0' => '-.-..', 'd' => '-..', '9' => '.', 'f' => '..-.', 'g' => '--.', '?' => '--.-.', 'h' => '....', '?' => '..', 'i' => '.-..-', 'j' => '.---', 'k' => '-.-', 'l' => '.-..', 'ö' => '--', '8' => '-.', 'o' => '---', 'q' => '---.', 'p' => '.--.', 'm' => '--.-', '7' => '.-.', 'c' => '...', 'z' => '.--..', 't' => '-', 'u' => '..-', '¿' => '..--', 'v' => '...-', '1' => '.--', '5' => '-..-', 'y' => '-.--', '?' => '--..', 'ç' => '-----', 'w' => '.----', '&' => '..---', '3' => '...--', '4' => '....-', 'x' => '.....',
       
'6' => '-....','r' => '--...','n' => '---..','e' => '----.','.' => '.-.-.-',',' => '--..--','?' => '..--..','$' => '.----.','!'=> '-.-.--','/'=> '-..-.','b' => '-.--.',')' => '-.--.-','2' => '.-...',':' => '---...',';' => '-.-.-.','@' => '-...-','+' => '.-.-.','-' => '-....-','_' => '..--.-','"' => '.-..-.','\'' => '...-..-',
       
'=' => '.--.-.','ü' => '..-.-','¡' => '--...-',' ' => '/',
    )
);

$encode = $Mind->siyakat_encode($data, $miftah);
echo
$encode;