ec check
This commit is contained in:
@@ -1,11 +1,13 @@
|
||||
# Fenom
|
||||
|
||||
## IF . ELSEIF . ELSE
|
||||
|
||||
```
|
||||
{if <expression>}
|
||||
{* ...code... *}
|
||||
{* ...code... *}
|
||||
{elseif <expression>}
|
||||
{* ...code... *}
|
||||
{* ...code... *}
|
||||
{else}
|
||||
{* ...code... *}
|
||||
{* ...code... *}
|
||||
{/if}
|
||||
```
|
||||
|
||||
@@ -1,18 +1,18 @@
|
||||
<?php
|
||||
// gettype(mixed $value): string
|
||||
$value = 1;
|
||||
// gettype(mixed $value): string
|
||||
$value = 1;
|
||||
|
||||
// Return Values
|
||||
// Possible values for the returned string are:
|
||||
//
|
||||
// "boolean"
|
||||
// "integer"
|
||||
// "double" (for historical reasons "double" is returned in case of a float, and not simply "float")
|
||||
// "string"
|
||||
// "array"
|
||||
// "object"
|
||||
// "resource"
|
||||
// "resource (closed)" as of PHP 7.2.0
|
||||
// "NULL"
|
||||
// "unknown type"
|
||||
// Return Values
|
||||
// Possible values for the returned string are:
|
||||
//
|
||||
// "boolean"
|
||||
// "integer"
|
||||
// "double" (for historical reasons "double" is returned in case of a float, and not simply "float")
|
||||
// "string"
|
||||
// "array"
|
||||
// "object"
|
||||
// "resource"
|
||||
// "resource (closed)" as of PHP 7.2.0
|
||||
// "NULL"
|
||||
// "unknown type"
|
||||
?>
|
||||
|
||||
@@ -77,21 +77,21 @@
|
||||
$message = '
|
||||
<html>
|
||||
<head>
|
||||
<title>Birthday Reminders for August</title>
|
||||
<title>Birthday Reminders for August</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>Here are the birthdays upcoming in August!</p>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Person</th><th>Day</th><th>Month</th><th>Year</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Johny</td><td>10th</td><td>August</td><td>1970</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Sally</td><td>17th</td><td>August</td><td>1973</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p>Here are the birthdays upcoming in August!</p>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Person</th><th>Day</th><th>Month</th><th>Year</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Johny</td><td>10th</td><td>August</td><td>1970</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Sally</td><td>17th</td><td>August</td><td>1973</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
';
|
||||
|
||||
Reference in New Issue
Block a user