在 URL 之前使用正斜杠使用 preg_replace
$contentss = file_get_contents("http://www.ncbi.nlm.nih.gov/pubmed?LinkName=pubmed_pubmed&from_uid=18032633" );
preg_match('/<div class="rprt">(.*)<\/div>/',$contentss,$matches);
$patterns = '/pubmed/';
$replacements = 'http://ncbi.nlm.nih.gov/pubmed';
$string = '<a href="pubmed/"></a>';
$getreplacements = ( preg_replace($patterns, $replacements, $matches));
echo $getreplacements[0];
输出在锚标签href中显示为/ http://ncbi.nlm.nih.gov/pubmed 。我想在http://ncbi.nlm.nih.gov/pubmed之前删除那个正斜杠。
请帮助解决这个问题。提前致谢。