diff --git a/Doc/Manual/Contents.html b/Doc/Manual/Contents.html index 5d532bc50..ada72164b 100644 --- a/Doc/Manual/Contents.html +++ b/Doc/Manual/Contents.html @@ -892,6 +892,7 @@
  • Structures and C++ classes diff --git a/Doc/Manual/Php.html b/Doc/Manual/Php.html index 1291c3468..bb598e413 100644 --- a/Doc/Manual/Php.html +++ b/Doc/Manual/Php.html @@ -27,6 +27,7 @@
  • Structures and C++ classes @@ -554,7 +555,7 @@ not be silently converted. So these two functions:

    -void doit( const Vector & );
    +void doit( const Vector & );
     void doit( int i );
     
    @@ -575,7 +576,7 @@ as PHP resources, rather like MySQL connection handles.

    There are multiple ways to wrap pointers to simple types. Given the following C method: -

    +

       void add( int *in1, int *in2, int *result);
    @@ -672,7 +673,7 @@ include("example.php");
     $in1 = 3;
     $in2 = 5;
     $result = 0;
    -add(&$in1,&$in2,&$result);
    +add(&$in1,&$in2,&$result);
     
     echo "The sum $in1 + $in2 = $result\n";
     ?>
    @@ -726,7 +727,7 @@ struct Complex {
     
     

    Would be used in the following way: -

    +

     <?php
    @@ -779,7 +780,7 @@ Complex_im_set($obj,$d);
     Complex_im_get($obj);
     
    -

    24.2.6.2 Constructors and Destructers

    +

    24.2.6.2 Constructors and Destructers

    @@ -820,7 +821,7 @@ the programmer can either reassign the variable or call unset($v)

    -

    24.2.6.2 Static Member Variables

    +

    24.2.6.3 Static Member Variables

    @@ -860,7 +861,7 @@ Ko::threats(10); echo "There has now been " . Ko::threats() . " threats\n";

    -

    24.2.6.3 Static Member Functions

    +

    24.2.6.4 Static Member Functions