PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Mehmet Abdullah Pazarbasi   Sayidan Yaziya   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Examples
Class: Sayidan Yaziya
Convert numbers into Turkish words
Author: By
Last change: an example added
Date: 12 years ago
Size: 382 bytes
 

Contents

Class file image Download
<?php
/* öçşığüÖÇŞİĞÜ */
header("Content-type: text/html; charset=utf-8");

require_once
"class.s2y.php";

$o = new s2y();
echo
$o->get(101)."<br />\n";
echo
$o->get(987)."<br />\n";
echo
$o->get(101.1)."<br />\n";
echo
$o->get(101.10)."<br />\n";
echo
$o->get(1010101.1013600)."<br />\n";
echo
$o->get($_GET["s"])."<br />\n";
echo
$o->getnci($_GET["s"])."<br />\n";
?>