PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of juergen kaucher   morse   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: example for morse.class.php
Class: morse
Short class for encoding or decoding morse signs
Author: By
Last change:
Date: 22 years ago
Size: 178 bytes
 

Contents

Class file image Download
<?
/* example */
include('morse.class.php');
$new= new Morse();
$text="This is my 1st morse";
$new->ToMorse($text);
echo
MORSE."<br>";
$new->ToText(MORSE);
echo
TEXT;
?>