Q
在一個txt文件
1
A
回答
3
這裏是你如何與它進行:
$contents = file_get_contents('yourfile.txt');
$search_keyword = 'four';
// check if word is there
if (strpos($contents, $search_keyword) !== FALSE){
echo "$search_keyword was found !!";
}
else{
echo "$search_keyword was NOT found !!";
}
2
這是否真的需要在PHP中完成?您剛剛描述了UNIX grep
實用程序。
0
你可以做到這一點,如:
$data = file($path_to_file,FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
if (in_array($data,'word')) {
// do something
}
這是一個簡單的技巧,但它應該工作。
相關問題
- 1. 在一個txt文件
- 2. 一個txt文件
- 3. 一個txt文件
- 4. 將多個txt文件附加到一個txt文件
- 5. 讀取一個txt文件
- 6. 要從一個txt文件
- 7. 要從一個txt文件
- 8. 把一個.txt文件到一個DataGridView
- 9. 在Mathematica中讀取一個txt文件
- 10. 在一個txt文件中使用C++
- 11. 在Python中加載一個txt文件
- 12. 如何從一個txt文件在Java
- 13. 在mysql中導入一個txt文件
- 14. 在.Net中附加一個txt文件
- 15. 寫入一個txt文件在c#
- 16. 遇到問題在一個txt文件
- 17. 在pythonanywhere中寫入一個txt文件?
- 18. 批量刪除在一個txt文件
- 19. 複製.txt文件到一個單獨的.txt文件 - python
- 20. Python:從另一個txt文件中刪除一個txt文件的元素
- 21. 如何從一個txt文件導入raw_input /將raw_input寫入一個txt文件
- 22. 在一個文件夾中讀取多個.txt文件
- 23. 做一個文本框生成文本文件,如t1.txt t2.txt t3.txt等
- 24. 如何將文件名從一個txt文件重命名爲bash中另一個txt文件的文件名?
- 25. 在TXT文件
- 26. 在txt文件
- 27. 在一個.txt
- 28. 在一個txt文件後面運行exe文件
- 29. 不能我的文件保存在一個txt文件
- 30. 如何在bin文件夾中創建一個txt文件
和關鍵字去是「二十四」 ...... – 2011-01-09 09:48:14