简单地在 php 中,我们可以用其他字符串替换一个字符串,例如使用特定函数 str_replace() 等
假设我有一个file.txt
包含
text1
text2
text3
...
text n
$text
我有一个变量
$text = "I want to get text1 and text2";
如何根据 file.txt 中的可用字符串获取字符串 (text1
和)?text2
我想要一个新变量说 ($new) 它包含适合字符串 file.txt 的 $text 字符串
所以我有$new="text1 text2";
我仍然很困惑,如何调整两个文本。
任何帮助,将不胜感激。谢谢。