5-Fonctions typées Flashcards

1
Q

exemple de fonction

A

<?php
function afficher() {
echo”<h1>Hello World !</h1>”;
}
?>

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

commencer page 100% php

A

<?php
declare(strict_types=1);
?>

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

comment typer une fonctions php

A

function addition(int $nb1, int $nb2) : int {
// code de la fonction
}

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

ou mettre fonction ?

A

fichier separé

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

exemple de conversion

A

$nb1 = (int)$_POST(“txtNb1”);

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

argument optionnel

A

lui donne rune valeur par defaut dans les parametres genre (int $nb =20)

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