1

$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/>';
        }
        ?>

スタイル置換の上のコードに注目してください

ありがとう!!

4

1 に答える 1

2

url_encode を呼び出す必要があります...

これを変える

$contents = file_get_contents($baseUrl . $_REQUEST[$word]);

これに

$contents = file_get_contents($baseUrl . url_encode($_REQUEST[$word]));
于 2013-02-28T23:25:14.197 に答える