Difference between revisions of "PHP/arrays"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< PHP
Jump to navigation Jump to search
(Created page with '==About== Arrays are a very powerful tool in PHP, and the official documentation on them is a little bit scattered. This page is an attempt to index all the relevant documentatio…')
 
(pointer fx)
 
Line 1: Line 1:
 
==About==
 
==About==
 
Arrays are a very powerful tool in PHP, and the official documentation on them is a little bit scattered. This page is an attempt to index all the relevant documentation in one place.
 
Arrays are a very powerful tool in PHP, and the official documentation on them is a little bit scattered. This page is an attempt to index all the relevant documentation in one place.
 
+
==Pages==
 +
* [[/pointer]]: operations involving the internal array pointer
 +
==Official==
 
* [http://php.net/manual/en/language.types.array.php array type] ([http://php.net/array alt]): basic/declarative syntax
 
* [http://php.net/manual/en/language.types.array.php array type] ([http://php.net/array alt]): basic/declarative syntax
 
* [http://php.net/manual/en/language.operators.array.php array operators]
 
* [http://php.net/manual/en/language.operators.array.php array operators]
 
* [http://php.net/manual/en/book.array.php array extension]: the built-in extension which provides array functions
 
* [http://php.net/manual/en/book.array.php array extension]: the built-in extension which provides array functions

Latest revision as of 21:08, 28 November 2019

About

Arrays are a very powerful tool in PHP, and the official documentation on them is a little bit scattered. This page is an attempt to index all the relevant documentation in one place.

Pages

  • /pointer: operations involving the internal array pointer

Official