我没有得到我需要的代码,以使Names与相应的ID号配对。任何帮助将不胜感激
public function validate($value)
{
$file_location = '/path/to/file/a1.txt';
$csv = array_map('str_getcsv', file($file_location)); //Get all values from the file
$allowed_values = array_column(3); // Replace 3 by the index of the field
return in_array($value, $allowed_values);
}
答案 0 :(得分:1)
您只是在每个条目中交换ID号。你想交换整个条目。
if (StudentInfo[i].idNumber < StudentInfo[j].idNumber)
{
var temp = StudentInfo[i];
StudentInfo[i] = StudentInfo[j];
StudentInfo[j] = temp;
}