我正在网站上建立字典。我调用原始站点 (www.rae.es) 的术语定义,并将它们的 css 更改为我自己的一个。这是代码:
<?php
$word = $_REQUEST['word'];
$url = "http://lema.rae.es/drae/srv/search?val={$word}";
$css = <<<EOT
<style type="text/css">
@font-face {
font-family: 'brannboll_fetregular';
src: url('brannbollfet-webfont.eot');
src: url('brannbollfet-webfont.eot?#iefix') format('embedded-opentype'),
url('brannbollfet-webfont.woff') format('woff'),
url('brannbollfet-webfont.ttf') format('truetype'),
url('brannbollfet-webfont.svg#brannboll_fetregular') format('svg');
}
.a
{
color: #ffe200;
margin-top:20px !important;
}
.f
{
margin-left:20px !important;
margin-top:10px;
font-size: 200%;
color: #ffe200;
font-family: 'brannboll_fetregular';
}
.o
{
font-size: 80%;
color: #ffe200;
margin-left:10px;
font-family: 'Belgrano', serif;
}
.q {
margin-left:10px;
font-family: 'Belgrano', serif;
}
.k {
margin-left:10px;
font-family: 'Belgrano', serif;
}
.p {
font-family: 'Belgrano', serif;
}
img
{
visibility:hidden;
}
</style>
EOT;
$data = file_get_contents($url);
$data = str_replace('<head>', $css.'</head>', $data);
$data = str_replace('<span class="f"><b>.</b></span>', '', $data);
echo '<div id="result1"
style="
top: 77%;
left: 55%;
overflow:scroll;
width:400px;
height:300px;
border: 1px solid #000000;
border-radius: 15px;
background-opacity: 0.5;
background: #047C8F;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
box-shadow: inset 0px 3px 13px #000000;
-moz-box-shadow:
0px 3px 13px rgba(000,000,000,0.5),
inset 0px 0px 13px rgba(0,0,0,1);
-webkit-box-shadow:
0px 3px 13px rgba(000,000,000,0.5),
inset 0px 0px 13px rgba(0,0,0,1);
">
'.$data.'
</div>';
?>
现在,有时,对于一些话,建议会出现。例如:http ://lema.rae.es/drae/?val=casa 。如果您搜索“casa”,您将提出 3 条建议。现在,如果在我的站点中单击这些超链接,我将被重定向到错误页面。所以,我现在解决方案掌握在 php 手中,我只是不知道从哪里开始。谢谢!