Techknow Heights - tkhts.com
Techknow Heights - tkhts.com
| Type | Description |
|---|---|
| Integer | A whole number |
| Double | A floating-point number |
| String | A collection of characters Boolean Array One of the special values true or false. |
| Array | Arrays are named and indexed collections of other values. |
| Objects | Objects are instances of programmer-defined classes,which
can kinds of values and functions that are specific to the class. |
| Type | Description |
|---|---|
| Resource | Reference to a third-party resource (e.g - a database) |
| Null | An uninitialized Variable. |
<?php
define("Greeting","TechKnow Heights");
echo constant("Greeting ");
?>
echo "it is example to print a string .";
Or
echo("it is example to print the string .");