1
0
mirror of https://github.com/php/web-php.git synced 2026-03-29 18:52:08 +02:00
Files
archived-web-php/apachecon/s_lang7.php3
Rasmus Lerdorf 2424277ad8 Add main slides
1998-10-21 23:44:28 +00:00

14 lines
387 B
PHP
Executable File

<?php require "header.inc"?>
<h2>Arrays</h2>
<ul>
<li>Ordered arrays
<?example('<? $a[0] = 1; $a[1] = "foo"; $a[2] = 1.57; ?>'); ?>
<li>Associative arrays
<?example('<? $a[\'cat\'] = "mouse"; $a[\'dog\'] = "cat"; ?>');?>
<li>Manipulating
<ul>
<li><B>Sorting:</B> sort(), rsort(), ksort(), usort()
<li><B>Traversal:</B> reset(), next(), current, each()
</ul>
<?php require "footer.inc"?>