PHP Classes

File: tests/morsealphabet.php

Recommend this page to a friend!
  Classes of Ali YILMAZ   Mind Framework   tests/morsealphabet.php   Download  
File: tests/morsealphabet.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,472 bytes
 

Contents

Class file image Download
<?php

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

$Mind = new Mind();


$Mind->print_pre($Mind->morsealphabet());

echo
'<hr>';

$morseDictionary = array(
   
'c' => '.-',
   
'b' => '-...',
   
'a' => '-.-.',
   
'ç' => '-.-..',
   
'd' => '-..',
   
'e' => '.',
   
'f' => '..-.',
   
'g' => '--.',
   
'?' => '--.-.',
   
'h' => '....',
   
'?' => '..',
   
'i' => '.-..-',
   
'j' => '.---',
   
'k' => '-.-',
   
'l' => '.-..',
   
'm' => '--',
   
'n' => '-.',
   
'o' => '---',
   
'ö' => '---.',
   
'p' => '.--.',
   
'q' => '--.-',
   
'r' => '.-.',
   
's' => '...',
   
'?' => '.--..',
   
't' => '-',
   
'u' => '..-',
   
'ü' => '..--',
   
'v' => '...-',
   
'w' => '.--',
   
'x' => '-..-',
   
'y' => '-.--',
   
'z' => '--..',
   
'0' => '-----',
   
'1' => '.----',
   
'2' => '..---',
   
'3' => '...--',
   
'4' => '....-',
   
'5' => '.....',
   
'6' => '-....',
   
'7' => '--...',
   
'8' => '---..',
   
'9' => '----.',
   
'.' => '.-.-.-',
   
',' => '--..--',
   
'?' => '..--..',
   
'\'' => '.----.',
   
'!'=> '-.-.--',
   
'/'=> '-..-.',
   
'(' => '-.--.',
   
')' => '-.--.-',
   
'&' => '.-...',
   
':' => '---...',
   
';' => '-.-.-.',
   
'=' => '-...-',
   
'+' => '.-.-.',
   
'-' => '-....-',
   
'_' => '..--.-',
   
'"' => '.-..-.',
   
'$' => '...-..-',
   
'@' => '.--.-.',
   
'¿' => '..-.-',
   
'¡' => '--...-',
   
' ' => '/',
);

$Mind->print_pre($Mind->morsealphabet($morseDictionary));