Skip to content

EuropeanUniversityFoundation/isced_php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ISCED-F for PHP

This library provides a curated list of ISCED-F 2013 fields of study for use in PHP applications.

Installation

composer require euf/isced

Usage example

<?php

require_once 'vendor/autoload.php';

use Isced\IscedFieldsOfStudy;

$iscedF = new IscedFieldsOfStudy();

$list = $iscedF->getList();

try {
  $is = $iscedF->isBroad("0711");
} catch (\Throwable $th) {
  echo($th->getMessage());
}

$tree = $iscedF->getTree();

echo(json_encode($tree, JSON_PRETTY_PRINT) . "\n");

About

PHP library providing ISCED-F 2013 fields of study.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages