formationsPhp mysqlFormation PHP 5 et MySQL Cours 3: Déclaration des données,opérations élémentaires et...

Formation PHP 5 et MySQL Cours 3: Déclaration des données,opérations élémentaires et concaténation

[su_youtube url= »https://www.youtube.com/watch?v=LU4NUXNrJJ8″]

<?php
// Déclaration

$texte= »mon premier texte »;
$valeur=88;
$booleen=true;
$tableau= array(‘un’,’deux’);
define(« CONST1″, »chaine de caractere »);
define(« CONST2″,44);
echo $texte. »<br> »;
echo $tableau[1]. »<br> »;
echo gettype($texte). »<br> »;

//opérations élémentaires

$addition=5+3;
echo $addition. »<br> »;

$modulo=5%2;
echo $modulo. »<br> »;

//concaténation

echo « $texte est xyz et ma premiere valeur est $valeur <br> »;
echo $texte.’ est xyz et ma premiere valeur est ‘.$valeur.'<br>’;

?>

Media streaming

Windows

Nos derniers articles

Plus d'article