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 Christiaan Westerbeek  >  math_class  >  example.php  >  Download  
File: example.php
Role: ???
Content type: text/plain
Description: An example
Class: math_class
Author: By
Last change:
Date: 2001-09-28 19:04
Size: 465 bytes
 

Contents

Class file image Download
<?php
  include ("math_class.php");
  $mathobject=new math_class;
  echo $mathobject->numconv(10,16,   255  , 4);
  echo "<BR>";
  echo $mathobject->numconv(16, 8,   abc34, 4);
  echo "<BR>";
  echo $mathobject->numconv( 2, 8,   11101, 0);
  echo "<BR>";
  echo $mathobject->numconv( 6, 5,      20, 8);
  echo "<BR>";
  echo $mathobject->numconv( 2,10,   11101, 6);
  echo "<BR>";
  echo $mathobject->numconv(10,30,59851949, 0);
  echo "<BR>";

?>