PHP Classes

File: example1.php

Recommend this page to a friend!
  Classes of Giulio Bai   AcronymIT   example1.php   Download  
File: example1.php
Role: Example script
Content type: text/plain
Description: Example #1
Class: AcronymIT
Locate and process acronyms within text phrases
Author: By
Last change:
Date: 17 years ago
Size: 234 bytes
 

Contents

Class file image Download
<?php

include_once('acronymIT.php');

$text = "The PHP version 6 is under development. Read more on the WWW or get info via RSS";
$acronymit = new AcronymIT();
$text = $acronymit->acronym($text, 1, "it");

echo
$text;

?>