Nombre d'étudiants: 10
Âge moyen: 20.2 ans
Formations: Licence Informatique, Licence Cybersécurité, DUT Informatique, Licence Cyber, CPGE MPSI, Médecine
Formation: Licence Informatique
Email: kacper@example.com
Matières: HTML, CSS, JavaScript, PHP, JSON
Inscrit le: 2024-01-15 10:30:00
Formation: Licence Cybersécurité
Email: alice@example.com
Matières: Réseaux, Sécurité, Python
Inscrit le: 2024-01-20 14:45:00
Formation: DUT Informatique
Email: bob@example.com
Matières: Java, Base de données, Algorithmique
Inscrit le: 2024-01-25 09:15:00
Formation: Licence Cyber
Formation: Licence Cyber
Formation: CPGE MPSI
Formation: Médecine
Matières: Histoire
Matières: maths
Matières: histoire, français
$fichier = 'etudiant.json';
if (file_exists($fichier)) {
$json_data = file_get_contents($fichier);
$etudiants = json_decode($json_data, true);
foreach ($etudiants as $etudiant) {
echo "Nom: " . $etudiant["nom"];
echo "Âge: " . $etudiant["age"];
}
}