$ words变量是西班牙语单词,我的页面查找从www.rae.es获取它们的含义。 一些西班牙语单词有急性重音(áéúíó)。如果用户输入“baúl”,则无法识别。我知道我应该使用函数url_encode($ words)将其编码为“ba%FAl”(有效),但它不起作用。以下是大部分PHP代码:
<?php
// create an array of requests that we want
// to load in the url.
$words = array('word','word0','word1','word2','word3','word4','word5');
function url_encode($string){
return urlencode(utf8_encode($string));
}
// we'll use this later on for loading the files.
$baseUrl = 'http://lema.rae.es/drae/srv/search?val=';
// string to replace in the head.
$cssReplace = <<<EOT
<style type="text/css">
//bla bla bla
</style>
</head>
EOT;
// string to remove in the document.
$spanRemove = '<span class="f"><b>.</b></span>';
$styleRemove =
// use for printing out the result ID.
$resultIndex = 0;
// loop through the words we defined above
// load the respective file, and print it out.
foreach($words as $word) {
// check if the request with
// the given word exists. If not,
// continue to the next word
if(!isset($_REQUEST[$word]))
continue;
// load the contents of the base url and requested word.
$contents = file_get_contents($baseUrl . $_REQUEST[$word]);
// replace the data defined above.
$contents = str_replace('</head>', $cssReplace, $contents);
$contents = str_replace($spanRemove,"", $contents);
// print out the result with the result index.
// ++$resultIndex simply returns the value of
// $resultIndex after adding one to it.
echo '<div id="result" style="
margin-top:-80px;
overflow:scroll;
width:800px;
height:150px;
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);
', (++$resultIndex) ,'">', $contents ,
'</div>',
'<br/>',
'<br/>',
'<br/>',
'<br/>',
'<br/>';
}
?>
专注于样式替换上方的代码
谢谢!
答案 0 :(得分:2)
你必须调用url_encode ...
更改此
$contents = file_get_contents($baseUrl . $_REQUEST[$word]);
进入这个
$contents = file_get_contents($baseUrl . url_encode($_REQUEST[$word]));