當前位置: 首頁>>代碼示例>>PHP>>正文


PHP DataProvider::getTranscriptions方法代碼示例

本文整理匯總了PHP中DataProvider::getTranscriptions方法的典型用法代碼示例。如果您正苦於以下問題:PHP DataProvider::getTranscriptions方法的具體用法?PHP DataProvider::getTranscriptions怎麽用?PHP DataProvider::getTranscriptions使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在DataProvider的用法示例。


在下文中一共展示了DataProvider::getTranscriptions方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: array

    }
}
//Words to work with:
$words = array();
foreach (explode(',', $_GET['words']) as $wIx) {
    $words[$wIx] = true;
}
foreach (DataProvider::getWords($_GET['study']) as $w) {
    $wIx = $w['IxElicitation'] . $w['IxMorphologicalInstance'];
    if (array_key_exists($wIx, $words)) {
        $words[$wIx] = $w;
    }
}
//Transcriptions to work with:
$transcriptions = array();
foreach (DataProvider::getTranscriptions($_GET['study']) as $t) {
    $lIx = $t['LanguageIx'];
    if (array_key_exists($lIx, $languages)) {
        $wIx = $t['IxElicitation'] . $t['IxMorphologicalInstance'];
        if (array_key_exists($wIx, $words)) {
            $tIx = $lIx . '-' . $wIx;
            if (array_key_exists($tIx, $transcriptions)) {
                array_push($transcriptions[$tIx], $t);
            } else {
                $transcriptions[$tIx] = array($t);
            }
        }
    }
}
//Building the .csv:
$filename = 'Customexport';
開發者ID:pombredanne,項目名稱:soundcomparisons,代碼行數:31,代碼來源:csv.php

示例2: getStudyChunk

 public static function getStudyChunk($studyName)
 {
     //Provide complete data for a single study:
     $sId = DataProvider::getStudyId($studyName);
     //The representation that will be returned:
     return array('study' => DataProvider::getStudy($studyName), 'families' => DataProvider::getFamilies($sId), 'regions' => DataProvider::getRegions($studyName), 'regionLanguages' => DataProvider::getRegionLanguages($studyName), 'languages' => DataProvider::getLanguages($studyName), 'words' => DataProvider::getWords($studyName), 'meaningGroupMembers' => DataProvider::getMeaningGroupMembers($sId), 'transcriptions' => DataProvider::getTranscriptions($studyName), 'defaults' => DataProvider::getDefaults($sId));
 }
開發者ID:pombredanne,項目名稱:soundcomparisons,代碼行數:7,代碼來源:dataProvider.php

示例3: foreach

foreach (DataProvider::getStudies() as $s) {
    $style = $s === $current ? ' btn-inverse' : '';
    echo "<a class=\"btn{$style}\" href=\"?study={$s}\">{$s}</a>";
}
?>
    </div>
    <?php 
if (isset($_GET['study'])) {
    ?>
    <table class="display table table-bordered">
      <?php 
    $head = '<tr><th>Missing files:</th></tr>';
    echo "<thead>{$head}</thead>";
    //Making sure we're at the right location:
    chdir('..');
    DataProvider::getTranscriptions($_GET['study']);
    //We use missingSounds to fill the table:
    foreach (DataProvider::$missingSounds as $sound) {
        echo "<tr><td>{$sound}</td></tr>";
    }
    echo "<tfoot>{$head}</tfoot>";
    ?>
    </table>
    <script type="application/javascript">
      $(document).ready(function(){
        $('table.display').DataTable({paging: false, ordering: false});
      });
    </script>
    <?php 
}
?>
開發者ID:pombredanne,項目名稱:soundcomparisons,代碼行數:31,代碼來源:missingSounds.php


注:本文中的DataProvider::getTranscriptions方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。