本文整理汇总了PHP中Translation::studies方法的典型用法代码示例。如果您正苦于以下问题:PHP Translation::studies方法的具体用法?PHP Translation::studies怎么用?PHP Translation::studies使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Translation
的用法示例。
在下文中一共展示了Translation::studies方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
@param $_GET['TranslationId'] TranslationId to search for
@param $_GET['SearchText'] Text to search for
Delivers matches as produced by all providers.
*/
/**
@param $_GET['TranslationId'] TranslationId to search for
@param $_GET['SearchText'] Text to search for
Delivers matches as produced by all providers.
*/
case 'search':
echo Config::toJSON(Translation::search($_GET['TranslationId'], $_GET['SearchText']));
break;
/** Returns a JSON array of all Names in the Studies table. */
/** Returns a JSON array of all Names in the Studies table. */
case 'studies':
echo Config::toJSON(Translation::studies());
break;
/**
Fetches the complete Page_Translations table.
@returns A JSON Array with JSON Objects inside.
Fields of contained JSON Objects are named as in db.
*/
/**
Fetches the complete Page_Translations table.
@returns A JSON Array with JSON Objects inside.
Fields of contained JSON Objects are named as in db.
*/
case 'translations':
echo Config::toJSON(Translation::translations());
break;
/**
示例2: array_key_exists
<?php
require_once 'categorySelection.php';
if ($providerGroup !== '') {
$pGroups = Translation::providers();
$dependsOnStudy = array_key_exists($providerGroup, $pGroups['_dependsOnStudy']);
$data = array();
if (!$dependsOnStudy) {
$data = Translation::pageAll($pGroups[$providerGroup], '', $translationId);
} else {
foreach (Translation::studies() as $s) {
$data[$s] = Translation::pageAll($pGroups[$providerGroup], $s, $translationId);
}
}
require_once 'showTable.php';
//Below output only if $data contains something:
if (count($data) !== 0) {
echo '<legend>Data to translate:</legend>';
if ($dependsOnStudy) {
foreach ($data as $study => $tdata) {
echo "<h4>{$study}:</h4>";
showTable($tdata);
}
} else {
showTable($data);
}
} else {
echo '<p class="well">Sorry, no data was found.</p>';
}
}
?>