如果要获取下拉选项的文本,则应使数组索引与关联值相同:
$files = glob($dir."/*.[tT][xX][tT]");
$correctFiles = array_combine($files,$files);
Choose text file: <?php echo $this->Form->select('textDrop', array('options' => $correctFiles, 'style' => 'width: 150px;', 'id' => 'textDrop')); ?>