英语单词 英文实现
$课底部评论 file = fopen("word.txt", "r");$words=array();$new_file = fopen('new_word.txt','a');$i=0;//输出文本中所有的行,直到文件结束为止。while(! feof($file)){
? ?$str= fgets($file);//fgets()函数从文件指针中读取一行
? ? preg_match('/^([a-zA-Z]+)\s+/',$str,$matches);
? ? if (!empty($matches[1])){
? ? ? ? $words[$i] = $matches[1];
? ? }
? ? $words[$i] = preg_replace('# #', '', $words[$i]);
? ? if (!empty($words[$i])){
? ? ? ? echo $words[$i] ."<br>";
? ? ? ? $words[$i] = $words[$i]."\n";
? ? ? ? fputs($new_file,$words[$i],strlen($words[$i]));
? ? }
? ? $i++;}fclose($file);fclose($new_file);