PHP Functions Flashcards

1
Q

Syntax de function en PHP

A
function nombredefunction () {
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Invoke Function en PHP

A

Se hace con nombredefunction() y el ;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Invoke Function en PHP

A

Se hace con nombredefunction() y el ;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Sobre el return en las Function

A

Cuando se usa return el codigo despues del return no se ejecuta, solo el anterior al return dentro de la function

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Si se invoke function sin return en una variable

A

La variable se vuelve NULL

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Function parameters y arguments

A

En las function si se pone una variable dentro de parentesis y el valor en si es el argumento

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Functions que aceptan multiples parametros

A

Son varios parametros y si no estan todos no hace el invoke

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Pass By Reference permanente

A

Hacer cambios a un argumento desde una function con el (&$permanente) se hace referencia al punto de memoria fijo de la variable y no el temporal

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Variable Scope

A

Cada function tiene su propio scope y si se quiere una variable global se usa el keyboard global antes de la variable dentro del function

How well did you know this?
1
Not at all
2
3
4
5
Perfectly