我是PHP的新手。
我有一个不同名称的测试文件“names.txt”,例如;
Maddox
Magnus
Malcolm
Melvin
Marcus
Mark
Marlon
Martin
Marvin
Matthew
Maurice
Max
Medwin
Melville
Merlin
and so on to 100s
我希望这些名称与URL之类的另一个或相同的TXT文件。
<a href="http://example.com/Maddox/something/">Maddox</a></br>
<a href="http://example.com/Magnus/something/">Magnus</a></br>
<a href="http://example.com/Malcolm/something/">Malcolm</a></br>
<a href="http://example.com/Melvin/something/">Melvin</a></br>
<a href="http://example.com/Milburn/something/">Milburn</a></br>
<a href="http://example.com/Marvin/something/">Marvin</a></br>
<a href="http://example.com/Melville/something/">Melville</a></br>
<a href="http://example.com/Montague/something/">Montague</a></br>
and so on to the all names of txt file.
我不能手动完成100个,所以问题是如何使用PHP做到这一点?
你能为此制作一个PHP代码吗?
非常感谢。
答案 0 :(得分:2)
$fp=file("filename");
foreach($fp as $name)
{
echo '<a href="http://example.com/'.trim($name).'/something/">'.$name.'</a>';
echo "<br>";
}
答案 1 :(得分:2)
$fp=file("filename");
foreach($fp as $line)
{
echo '<a href="http://example.com/'.$line.'/something/">'.$line.'</a>';
echo "<br>";
}