PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Anthony Rogers   PHP Split Number   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Test and Example Page
Class: PHP Split Number
Split a long number into an array of smaller parts
Author: By
Last change: A couple of spelling corrections.
Date: 9 years ago
Size: 1,410 bytes
 

Contents

Class file image Download
<html>
<head>
<title>Test and Example Page for Number Splitter-Upper</title>
<style>
<!--
  .centre{
    text-align: center;
  }
//-->
</style>
</head>
<body>
<h1 class='centre'>Test and Example Page for Number Splitter-Upper</h1>
<?php
 
 
//Require class
 
require_once('number-splitter-upper.php');
 
 
//For now, just random numbers
  //$really_long_inputted_number has to be a string due to a max size on integers
 
$really_long_inputted_number = '87072316419618716160154502113081209718540150034117075017641332';
 
 
//Max size to split up the numbers
 
$inputted_max_number = 87;
 
 
//Makes calling the function several times so much easier
 
$return_type = 'string';
 
$join = ', ';
 
$filter_zeros = true;
 
$remove_zeros = true;
 
 
//Create instance
 
$n = new Number_Splitter_Upper($really_long_inputted_number, $inputted_max_number);
 
?>
<h2>Inputted numbers</h2>
<h3>Really long number to break up</h3>
<p><?php
 
 
echo $really_long_inputted_number;
 
?></p>
<h3>Maximum number size</h3>
<p><?php
 
 
echo $inputted_max_number;
 
?></p>
<h2>Echo the numbers to screen</h2>
<p><?php
 
  $n
->the_numbers( $join, $filter_zeros, $remove_zeros );
 
?></p>
<h2>Return the numbers for php use</h2>
<p><pre>
<?php
 
  print_r
( $n->get_numbers( 'array', $join, $filter_zeros, $remove_zeros ) );
 
?>
</pre></p>
</body>
</html>