Remove any include statement.

This commit is contained in:
Andreas Fischer 2014-06-02 19:26:40 +02:00
parent 8dff257cae
commit ae4099dc64

View File

@ -31,8 +31,6 @@
* Here's an example of how to use this library:
* <code>
* <?php
* include 'Math/BigInteger.php';
*
* $a = new Math_BigInteger(2);
* $b = new Math_BigInteger(3);
*
@ -239,8 +237,6 @@ class BigInteger
* Here's an example:
* <code>
* <?php
* include 'Math/BigInteger.php';
*
* $a = new Math_BigInteger('0x32', 16); // 50 in base-16
*
* echo $a->toString(); // outputs 50
@ -507,8 +503,6 @@ class BigInteger
* Here's an example:
* <code>
* <?php
* include 'Math/BigInteger.php';
*
* $a = new Math_BigInteger('65');
*
* echo $a->toBytes(); // outputs chr(65)
@ -604,8 +598,6 @@ class BigInteger
* Here's an example:
* <code>
* <?php
* include 'Math/BigInteger.php';
*
* $a = new Math_BigInteger('65');
*
* echo $a->toHex(); // outputs '41'
@ -631,8 +623,6 @@ class BigInteger
* Here's an example:
* <code>
* <?php
* include 'Math/BigInteger.php';
*
* $a = new Math_BigInteger('65');
*
* echo $a->toBits(); // outputs '1000001'
@ -669,8 +659,6 @@ class BigInteger
* Here's an example:
* <code>
* <?php
* include 'Math/BigInteger.php';
*
* $a = new Math_BigInteger('50');
*
* echo $a->toString(); // outputs 50
@ -821,8 +809,6 @@ class BigInteger
* Here's an example:
* <code>
* <?php
* include 'Math/BigInteger.php';
*
* $a = new Math_BigInteger('10');
* $b = new Math_BigInteger('20');
*
@ -952,8 +938,6 @@ class BigInteger
* Here's an example:
* <code>
* <?php
* include 'Math/BigInteger.php';
*
* $a = new Math_BigInteger('10');
* $b = new Math_BigInteger('20');
*
@ -1088,8 +1072,6 @@ class BigInteger
* Here's an example:
* <code>
* <?php
* include 'Math/BigInteger.php';
*
* $a = new Math_BigInteger('10');
* $b = new Math_BigInteger('20');
*
@ -1372,8 +1354,6 @@ class BigInteger
* Here's an example:
* <code>
* <?php
* include 'Math/BigInteger.php';
*
* $a = new Math_BigInteger('10');
* $b = new Math_BigInteger('20');
*
@ -1591,8 +1571,6 @@ class BigInteger
* Here's an example:
* <code>
* <?php
* include 'Math/BigInteger.php';
*
* $a = new Math_BigInteger('10');
* $b = new Math_BigInteger('20');
* $c = new Math_BigInteger('30');
@ -2396,8 +2374,6 @@ class BigInteger
* Here's an example:
* <code>
* <?php
* include 'Math/BigInteger.php';
*
* $a = new Math_BigInteger(30);
* $b = new Math_BigInteger(17);
*
@ -2464,8 +2440,6 @@ class BigInteger
* Here's an example:
* <code>
* <?php
* include 'Math/BigInteger.php';
*
* $a = new Math_BigInteger(693);
* $b = new Math_BigInteger(609);
*
@ -2599,8 +2573,6 @@ class BigInteger
* Here's an example:
* <code>
* <?php
* include 'Math/BigInteger.php';
*
* $a = new Math_BigInteger(693);
* $b = new Math_BigInteger(609);
*