How to make 360 ​​search engine include php rewriting method

php中世界最好的语言
Release: 2023-03-25 21:52:01
Original
2193 people have browsed it

This time I will bring you how to let 360 search engine include the php rewriting method, and let 360 search engine include the php rewriting method. What are the precautions? The following is a practical case, let's take a look.

360 search engine automatically includes the function. The official code is provided in a tape format, which is very cheating. It does not provide a batch submission entrance, but only provides a piece of js code. The key is to use one js to download another js, document.write Go to the document and repeat the process 2 more times.

Weak question: Why not provide a batch submission entrance like Baidu?

Could it be that this automatic submission function is used to collect website data, such as document.refer and other data? Isn't this one more rogue?

It is said that 360’s search engine currently has a market share of more than 20% in China. I don’t know whether it is true or not, but I am very skeptical!

At least I basically only use Google! However, in China, Baidu is still basically used, and there are still too many newbies!

I have no choice but to endure it and add 360’s automatic inclusion!

So we made some changes to the code!

The original code of the official website is as follows:

<script>(function(){
var src = (document.location.protocol == "http:") ? "http://js.passport.qihucdn.com/11.0.1.js?970506d365e969bd0e92a2611c18678e":"https://jspassport.ssl.qhimg.com/11.0.1.js?970506d365e969bd0e92a2611c18678e";
document.write(&#39;<script src="&#39; + src + &#39;" id="sozz"><\/script>&#39;);
})();
http://js.passport.qihucdn.com/11.0.1.js?970506d365e969bd0e92a2611c18678e
document.write(&#39;<script charset="utf-8" src="http://s7.qhres.com/static/ab77b6ea7f3fbf79.js"></script>&#39;)
Copy after login

The code provided by the official website has entered the quadratic document.write code as follows. The code of this js is as follows:

/**
 * 360推送 @www.zhoulujun.cn
 */
function getPushSoUrl($url){
  $token="970506d365e969bd0e92a2611c18678e";
  return $str="http://s.360.cn/so/zz.gif?url=".urlencode($url)."&sid=". $token."&token=".getPushToken($url,$token);
}
function getPushToken($url,$o){
  $n = str_split($url,1);
  $n=array_reverse($n);
  $r = str_split($o,1);
  $i=[];
  for($s=0,$o=16;$s<$o;$s++)
  {
    array_push($i,empty($n[$s])?$r[$s]:$r[$s].$n[$s]);
  }
  return implode($i);
}
/*
class push_so_url{
  private $token="970506d365e969bd0e92a2611c18678e";
  public function setToken($token){
    $this->token=$token;
  }
//  function construct($token) {
//    $this->token=$token;
//  }
  public function getPushToken($url,$o){
    $n = str_split($url,1);
    $n=array_reverse($n);
    $r = str_split($o,1);
    $i=[];
    for($s=0,$o=16;$s<$o;$s++)
    {
      array_push($i,empty($n[$s])?$r[$s]:$r[$s].$n[$s]);
    }
    return implode($i);
  }
  public function getImgUrl($url){
    return $str="http://s.360.cn/so/zz.gif?url=".urlencode($url)."&sid=". $this->token."&token=".$this->getPushToken($url,$this->token);
  }
}
*/
Copy after login

In the template phpcms/templates/default/content/ For example, add the following code to show index:

<img src="{getPushSoUrl($_SERVER[&#39;HTTP_HOST&#39;].$url)}">
Copy after login

okay, verify that the effect of

and js is the same.

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Detailed explanation of the steps for PHP to use file_get_contents to send http requests

PHP implements random elimination algorithm

The above is the detailed content of How to make 360 ​​search engine include php rewriting method. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!