1 / 5

Programaci n con PHP y MySql

Arreglos asociativos. Pueden ser indexados por clavesPueden ser indexados por nmeros (posiciones)Siguen las mismas reglas que las variablesHeterogneos. Arreglos asociativos. Ejemplo:$a[nombre'] = Mauro';$a[apellido'] = Chojrin';$a[edad'] = 26. Funciones standard. array$a = array( no

briar
Download Presentation

Programaci n con PHP y MySql

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


    1. Programacin con PHP y MySql Arreglos en PHP Mauro Chojrin mchojrin@xyconcept.com.ar

    2. Arreglos asociativos Pueden ser indexados por claves Pueden ser indexados por nmeros (posiciones) Siguen las mismas reglas que las variables Heterogneos

    3. Arreglos asociativos Ejemplo: $a[nombre] = Mauro; $a[apellido] = Chojrin; $a[edad] = 26

    4. Funciones standard array $a = array( nombre=>Mauro, apellido=>Chojrin); print_r count

    5. Estructura de control foreach foreach ($a as $e) foreach ($a as $k=>$v)

More Related