PHP를 사용하여 txt 파일을 htm으로 변환하는 코드

WBOY
풀어 주다: 2016-07-25 08:51:30
원래의
1062명이 탐색했습니다.
  1. /*

  2. 批量把某目录下的所有.txt文件转化为对应的htm文件,该htm文件包含有方便阅读的css样式
  3. 生成的htm文件放在同一目录下htm目录下
  4. 参数1:要转化的目录的路径
  5. 执行 php txt2htm.php "C:\txt\"
  6. php txt2htm.php "/tmp/txt/"
  7. php txt2htm.php .
  8. */
  9. $basedir=$argv[1];

  10. if(!$basedir||!is_dir($basedir))
  11. {
  12. die("please input dir.n");
  13. }
  14. //改变工作目录
  15. chdir($basedir);

  16. $d = dir(".");

  17. //创建输出目录
  18. $outputdir="./htm/";

  19. if(!is_dir($outputdir)){
  20. mkdir($outputdir, 0700);
  21. }
  22. //判断是否创建成功
  23. if(!is_dir($outputdir))

  24. {
  25. die("cannot mkdir.n");
  26. }
  27. while (false !== ($entry = $d->read()))
  28. {
  29. //判断是不是文件
  30. if(is_file($entry))

  31. {
  32. $filename=strtolower($entry);
  33. //判断是不是txt文件
  34. if(stristr($filename,".txt"))

  35. {
  36. $wfile=$outputdir.basename($filename,".txt").".htm";
  37. //若是文件已经存在,则跳过
  38. if(file_exists($wfile))

  39. {
  40. echo "**********".$wfile." is exists ,skip this file**************n";
  41. continue;
  42. }
  43. if($str=file_get_contents($entry))
  44. {
  45. //写入样式,和换行
  46. $str="

    ".str_replace("n","n
    ",$str);
  47. if($fp=fopen($wfile,"w"))
  48. {
  49. if (fwrite($fp,$str) === FALSE) {
  50. //写入失败
  51. echo $wfile." cover fail! fwrite failn";

  52. }else{
  53. echo $wfile." cover success!n";
  54. }
  55. fclose($fp);
  56. }else{
  57. //创建文件失败
  58. echo $wfile." cover fail! fopen failn";

  59. }
  60. }else{
  61. //读取失败
  62. echo $wfile." cover fail! file_get_contents failn";

  63. }
  64. }
  65. }
  66. }
  67. $d->close();
  68. ?>
复制代码

运行: PHP를 사용하여 txt 파일을 htm으로 변환하는 코드 效果: PHP를 사용하여 txt 파일을 htm으로 변환하는 코드



원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿