summaryrefslogtreecommitdiff
path: root/documentation/variables.html
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-06 19:08:07 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-06 19:08:07 +0100
commit70f702bcdaa70f9b8dffc2e552cf5e0b4be69660 (patch)
treec35db3a177fbfdea74c7f0d4f9b603f590256662 /documentation/variables.html
parente072565364a825ff71227a1abd290f4274971354 (diff)
changes to documentation
Diffstat (limited to 'documentation/variables.html')
-rw-r--r--documentation/variables.html32
1 files changed, 30 insertions, 2 deletions
diff --git a/documentation/variables.html b/documentation/variables.html
index 31dded6..f46712d 100644
--- a/documentation/variables.html
+++ b/documentation/variables.html
@@ -1,4 +1,4 @@
-<h2>Working with variables</h2>
+<h1>Working with variables</h1>
<p>
Variables in PHP are non-typed. A variable can thus hold any possible type:
an integer, string, a floating point number, and even an object or an array.
@@ -9,5 +9,33 @@
When you mix native code and PHP code, you will need to convert the non-typed
PHP variables into native variables, and the other way round: convert native
variables back into non-typed PHP variables. The PHP-CPP library offers the
- "Value" class that makes this a very simple task.
+ Php::Value class that makes this a very simple task.
</p>
+<h2>Scalar variables</h2>
+<p>
+ This section is not finished yet
+</p>
+
+
+
+<h2>Arrays</h2>
+<p>
+ This section is not finished yet
+</p>
+
+
+
+<h2>Objects</h2>
+<p>
+ This section is not finished yet
+</p>
+
+
+
+<h2>Functions</h2>
+<p>
+ This section is not finished yet
+</p>
+
+
+