mirror of
https://github.com/php/web-php.git
synced 2026-03-29 18:52:08 +02:00
14 lines
387 B
PHP
Executable File
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"?>
|