CM1 Flashcards

1
Q

Balise pour afficher du texte (ez)

A

echo

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

les pages web en php sont des pages …. ?

A

dynamiques

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

Quels interpréteurs ?

A

MAMP (Windows)
WAMP (OSX, mac)
LINUX en tp

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

Comment s’écrivent les commentaires en php ?

A

avec // ou //

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

Comment afficher les variables ?

A

echo
var_dump(…),, affichage de débuggage

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

Qu’est ce qui permet de savoir si une variable est définie ?

A

isset (…)

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

Quels sont les type de variables ?

A

Nombre (int ou float pour les chiffres a ,)
Booléen (bolean)
chaîne de caractères (string)
Tableaux (array)

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

Quelle est la structure conditionnelle ?

A

if (cond) { … ] else { … }

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

Quelle est la boucle for ?

A

for ($k=0; $k<10; $k++) { … }

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

Quelle est la boucle while ?

A

While (cond) { … }

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

Équivalent de ET et OU

A

&& et ||

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

Quelle est la structure d’une fonction ?

A

function nom() { … }

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

Quelle est la sortie d’une fonction ?

A

Return (pas obligatoire)

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