我有这段代码,在它之前没有任何代码引用下面看到的任何变量。但是我仍然找不到为什么会收到错误消息:“第一个参数应该是...中的数组”
$array = array("element here for reason");
function sortdata()
{
$File = fopen("Names.txt", "r");
//put each file line into an array element
while(!feof($File))
{
array_push($array, fgets($File));
}
}