我需要浏览php中的每个文件夹/文件,以查找此案例翻译格式的特定关键字,例如$this->
和$translator->
。
我需要获得这些结果并将其放到新文件中。
以下是我在使用ruby之前尝试的内容。
this = File.readlines("folder_path.php")
#If I need to get any translation that contain $this-> should I use grep? I tried using grep before but not giving result that I need.
that = File.open("new_file.txt", "w")
that << this
that.close
希望我没有混淆。谢谢。
答案 0 :(得分:0)
只需使用grep:
grep '$this->' -R *.php -n > result.txt