1
0
mirror of https://github.com/php/web-php.git synced 2026-03-31 03:32:23 +02:00
Files
archived-web-php/oz/s_lang6.php3
2000-03-08 02:10:21 +00:00

16 lines
338 B
PHP

<?php require "header.inc"?>
<h2>Basic data types</h2>
<ul>
<li>numbers (integer and real)
<li>strings
<li>booleans
</ul>
<h2>Dynamic typing</h2>
<ul>
<li>Don't have to declare types
<li>Automatic conversion done
</ul>
<?php example('<?php echo 5 + "1.5" + "10e2"; ?>')?>
<?php output(5 + "1.5" + "10e2"); ?>
<?php require "footer.inc"?>