我有一个页面 test.php,其中有一个名称列表:
name1='992345'
name2='332345'
name3='558645'
name4='434544'
在另一个页面test1.php?id=name2
中,结果应该是:
332345
我试过这个 PHP 代码:
<?php
$Text=file_get_contents("test.php")
$id = $_GET["id"];
;preg_match_all('/$id.=\'([^\']+)\'/',$Text,$Match);
$fid=$Match[1][0];
echo $fid; ?>
如果代码是这样使用的
<?php
$Text=file_get_contents("test.php")
;preg_match_all('/name3=\'([^\']+)\'/',$Text,$Match);
$fid=$Match[1][0];
echo $fid; ?>
结果很好
558645
但是如果结果将是蜜蜂,我希望能够使用这样的 GET 方法更改'/name3=\'
from的名称。;preg_match_all('/name3=\'([^\']+)\'/',$Text,$Match)
test1.php?id=name4
434544