Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/69.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php URL编码不';行不通_Php_Html_Parsing_Variables_Encode - Fatal编程技术网

Php URL编码不';行不通

Php URL编码不';行不通,php,html,parsing,variables,encode,Php,Html,Parsing,Variables,Encode,$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. $wo

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

您必须调用url\u encode

改变这个

$contents = file_get_contents($baseUrl . $_REQUEST[$word]);
进入这个

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

你说它不起作用是什么意思?你真的在调用url_encode吗?致命错误:在第588行的/Applications/XAMPP/xamppfiles/htdocs/IBProject/verbumpost.php中调用未定义的函数url_encode()。上面的代码适用于您的示例。。如果声明在另一个文件中,您必须确保包含url_encode函数!在哪里可以下载声明了函数的文件?