summaryrefslogtreecommitdiff
path: root/Examples
diff options
context:
space:
mode:
authorJasperVanEck <jaspergkurtz@gmail.com>2013-11-29 16:54:55 +0100
committerJasperVanEck <jaspergkurtz@gmail.com>2013-11-29 16:54:55 +0100
commitb9aa9f880951d6bee7fe4b9046c563ad15d905f3 (patch)
tree75327f5c7e9aa5a956024b1abd815b0d34646241 /Examples
parentc764fe3f3127021e04f46a2e2d4aba521c675ca6 (diff)
trying to remove the blocks the text is in
Diffstat (limited to 'Examples')
-rw-r--r--Examples/README.md6
1 files changed, 0 insertions, 6 deletions
diff --git a/Examples/README.md b/Examples/README.md
index 6e30057..ac66425 100644
--- a/Examples/README.md
+++ b/Examples/README.md
@@ -14,7 +14,6 @@ The following examples are available:
### [Extension](https://github.com/EmielBruijntjes/PHP-CPP/tree/master/Examples/Extension)
-
The first example does nothing - it only shows how to create your
own extension. This means your extension will be listed in the
output of "phpinfo()", and it is included in the array returned
@@ -26,7 +25,6 @@ The following examples are available:
### [FunctionVoid](https://github.com/EmielBruijntjes/PHP-CPP/tree/master/Examples/FunctionVoid)
-
This second example shows how to add a function to the extension
and call that function from the PHP code. Adding a function to
your extension means that you can call it anywhere from the PHP
@@ -42,7 +40,6 @@ The following examples are available:
### [FunctionReturnValue](https://github.com/EmielBruijntjes/PHP-CPP/tree/master/Examples/FunctionReturnValue)
-
The third example shows how to return a value from C++ to PHP.
Virtually any type of value can be returned to PHP from C++.
The returned value must be returned as Php::Value, rather than
@@ -57,7 +54,6 @@ The following examples are available:
### [FunctionNoParameters](https://github.com/EmielBruijntjes/PHP-CPP/tree/master/Examples/FunctionNoParameters)
-
The fourth example is a combination of the second and third example.
This example illustrates how to call a function without parameters.
The function is added to your extension, and can then be called from
@@ -71,7 +67,6 @@ The following examples are available:
### [FunctionWithParameters](https://github.com/EmielBruijntjes/PHP-CPP/tree/master/Examples/FunctionWithParameters)
-
The fifth example is an example to show how several different types
of parameters can used for functions. There are two ways to pass a
parameter, by value(Php::ByVal) and by reference(Php::ByRef). Each
@@ -116,7 +111,6 @@ The following examples are available:
### [Exceptions](https://github.com/EmielBruijntjes/PHP-CPP/tree/master/Examples/Exceptions)
-
The sixth example is composed of two parts, the throw exception and
the catch exception examples. The requirements of the catch example,
passing a callback as a parameter, have not yet been implemented.