我目前有这个功能可以在文本文件中搜索和替换。
// Input
$ect = array('Visssa', 'Lisssa', 'her');
// Placeholders in the file
$put = array('lname', 'fname', 'hisher');
// Replace the placeholders
$oput = str_replace($put, $ct, 'tmpfile.txt');
这不是完整的程序,但想法是将 tmpfile.txt 中的值替换为 $etc 数组中的值。它完美无缺。
但是,我需要做的是获取所有传递的变量(get/post),然后制作数组,以便 var 是要替换的值,而值是要替换它的值。
所以,如果我发送网址http://xyz.com/?lname=tom&ogre=yes
文件中的所有 lname 实例都将替换为 tom,所有的 ogre 实例都将替换为 yes。
所以不知何故,它只是获取在 get/post 中传递的任何/所有变量,然后上面显示的数组将导致 var 被文件中的值替换。