Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Ivan  >  numeroaletra  >  example.php  >  Download  
File: example.php
Role: Example script
Content type: text/plain
Description: ejemplo
Class: numeroaletra
Convierte numeros a letras y a euros
Author: By
Last change:
Date: 2002-09-26 09:56
Size: 556 bytes
 

Contents

Class file image Download
<?
/* example */
include('numeroaletra.php');
$NW= new numberstowords();
echo 
$NW->n2w(3)."3<br>";
echo 
$NW->n2w(1)."1<br>";
echo 
$NW->n2w(513)."513<br>";
echo 
$NW->n2w(4313)."4313<br>";
echo 
$NW->n2w(31313)."31313<br>";
echo 
$NW->n2w(131313)."131313<br>";
echo 
$NW->n2w(3131313)."3131313<br>";
echo 
$NW->n2w('999999999999999')."999999999999999<br>";
echo 
$NW->n2w(1000000000001)."<br>";
echo 
$NW->n2w('999999999999999',1)."<br>";
echo 
$NW->n2w('1000000000001')."<br>";
echo 
$NW->n2w('1000000000013',1)."<br>";
echo 
$NW->n2euro(513.89);
?>