本文整理汇总了PHP中DataProvider::getStudyChunk方法的典型用法代码示例。如果您正苦于以下问题:PHP DataProvider::getStudyChunk方法的具体用法?PHP DataProvider::getStudyChunk怎么用?PHP DataProvider::getStudyChunk使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DataProvider
的用法示例。
在下文中一共展示了DataProvider::getStudyChunk方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: script
<?php
/**
It became apparent, that generating the JSON files export/download/$study.json
can be quite expansive, and may fail on our server iff memory or time consumption grow too high.
This is also documented in #237.
To combat this problem this script (re-)generates all the JSON files as necessary.
*/
chdir(__DIR__);
require_once '../config.php';
require_once '../query/cacheProvider.php';
chdir('..');
echo "Regenerating Study Cache:\n";
foreach (DataProvider::getStudies() as $study) {
if (CacheProvider::hasCache($study)) {
continue;
}
echo "{$study}..\n";
$chunk = DataProvider::getStudyChunk($study);
CacheProvider::setCache($study, json_encode($chunk));
}
echo "Done.\n";
示例2:
1.: We offer a list of studies, and also global data applying to each study.
2.: Each study can be fetched separately.
3.: JavaScript will tack a timestamp on each study,
so that we can drop older studies from localStorage,
in case that we're running out of space.
4.: The data for each study thus consists of the following things:
- Name and basic data for the study itself
- A list of Families in the Study
- A list of Regions per Family
- A list of Languages per Region
- A list of Words per Study
- A list of Transcriptions per pair of Word and Language
- Defaults for the Study
*/
if (array_key_exists('global', $_GET)) {
echo Config::toJSON(array('studies' => DataProvider::getStudies(), 'global' => DataProvider::getGlobal()));
} else {
if (array_key_exists('study', $_GET)) {
if (CacheProvider::hasCache($_GET['study'])) {
echo CacheProvider::getCache($_GET['study']);
} else {
$ret = DataProvider::getStudyChunk($_GET['study']);
//Done:
$data = json_encode($ret);
echo $data;
CacheProvider::setCache($_GET['study'], $data);
}
} else {
echo json_encode(array('lastUpdate' => DataProvider::getLastImport(), 'Description' => 'Add a global parameter to fetch global data, ' . 'and add a study parameter to fetch a study.'));
}
}