PHP Classes

File: example.php

Recommend this page to a friend!
  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: 21 years ago
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);
?>