Home Backend Development PHP Tutorial Baidu Xiongzhao professional Q&A PHP method pushes the complete code (with instructions)

Baidu Xiongzhao professional Q&A PHP method pushes the complete code (with instructions)

Jan 22, 2019 pm 01:19 PM
php push

For the URL push of Baidu Xiongzhanghao Professional Q&A, Baidu provides a variety of URL push methods. I have written in detail before How to push through the CURL command method, but later Baidu changed the api address, in the URL If Chinese characters appear, an error will be reported when pushing in CURL mode. Below, php Chinese website (www.php.cn) will introduce another simpler method of pushing: PHP mode. Please refer to it for webmasters’ reference (please skip this if you understand PHP technology). Passed~~)

Baidu Xiongzhao professional Q&A PHP method pushes the complete code (with instructions)

Step one: Page transformation

For details, you can directly view the Baidu Xiongzhao backend, Search the professional Q&A module in the resource mobile zone.

Baidu Xiongzhao professional Q&A PHP method pushes the complete code (with instructions)

Step 2: API submission

PHP push example:

Specific Steps:

1. First, we save the following code as a PHP file, named for example baiduxiongzhang.php.

Note: The $api parameter needs to be modified to your own interface data.

Everyone, copy the following complete code and keep it in .php file format, and then replace the api address inside with your own, and that’s it! (Suitable for single URL submission)

<?php
$url = isset($_GET[&#39;url&#39;]) ? $_GET[&#39;url&#39;] : &#39;&#39;;
if(!$url){
   echo &#39;没有地址参数&#39;;exit;
}
   
$urls = array(0=>$url);
$api = &#39;http://data.zz.baidu.com/urls?appid=xxxx&token=xxxx&type=qa&domain=教育&#39;;
$ch = curl_init();
$options =  array(
    CURLOPT_URL => $api,
    CURLOPT_POST => true,
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_POSTFIELDS => implode("\n", $urls),
    CURLOPT_HTTPHEADER => array(&#39;Content-Type: text/plain&#39;),
);
curl_setopt_array($ch, $options);
$result = curl_exec($ch);
echo $result;
Copy after login

2. Then upload baiduxiongzhang.php to the root directory of the website, and access this PHP file on the browser, the following will appear:

Baidu Xiongzhao professional Q&A PHP method pushes the complete code (with instructions)

3. We will push professional Q&A through the following link:

http://www.xxx.com/baiduxiongzhang.php?url=
Copy after login

The format of the push link is : What is your website domain name baiduxiongzhang.php? url=the article or page link to be pushed

For example, if we want to push this page: m.php.cn/tags/tag-applet.html, we can push it as follows

http://www.xxx.com/baiduxiongzhang.php?url=m.php.cn/tags/tag-applet.html
Copy after login

4. After successful push, the following information will be returned:

Baidu Xiongzhao professional Q&A PHP method pushes the complete code (with instructions)

Attachment: Description of the above PHP code:

First We initialize the push link through the isset function. If no parameters are set, the "no address parameter" information in the above figure is returned, and then the curl_init() function is used to initialize the cURL session. And set the value of the option parameter as follows:

CURLOPT_URL: This is the URL address you want to retrieve using PHP.

CURLOPT_POST: When set to TRUE, it means that a POST request will be sent. The type is: application/x-www-form-urlencoded, which is also the most common one when submitting HTML forms.

CURLOPT_RETURNTRANSFER: Set to true to return the information obtained by curl_exec() as a string instead of outputting it directly.

CURLOPT_POSTFIELDS : Pass a string containing all the data as an HTTP "POST" operation.

CURLOPT_HTTPHEADER: Set custom HTTP headers

Finally set options in batches for cURL transfer sessions through the curl_setopt_array function, and execute cURL sessions through the curl_exec function.

Then after the professional Q&A is successfully pushed, the feedback parameters indicate:

success, success_qa: indicates the number of successfully pushed URLs

remain, remain_qa : Indicates the number of pushable URLs remaining on the day

Related recommendations:
1. "Baidu Xiongzhanghao resource platform URL link submission example using the curl command to push (installation Configuration graphic steps)

2. 《2019 PHP Video Tutorial

The above is the detailed content of Baidu Xiongzhao professional Q&A PHP method pushes the complete code (with instructions). For more information, please follow other related articles on the PHP Chinese website!

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Describe the SOLID principles and how they apply to PHP development. Describe the SOLID principles and how they apply to PHP development. Apr 03, 2025 am 12:04 AM

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set permissions of unixsocket after system restart? How to automatically set permissions of unixsocket after system restart? Mar 31, 2025 pm 11:54 PM

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

How to send a POST request containing JSON data using PHP's cURL library? How to send a POST request containing JSON data using PHP's cURL library? Apr 01, 2025 pm 03:12 PM

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

Framework Security Features: Protecting against vulnerabilities. Framework Security Features: Protecting against vulnerabilities. Mar 28, 2025 pm 05:11 PM

Article discusses essential security features in frameworks to protect against vulnerabilities, including input validation, authentication, and regular updates.

Customizing/Extending Frameworks: How to add custom functionality. Customizing/Extending Frameworks: How to add custom functionality. Mar 28, 2025 pm 05:12 PM

The article discusses adding custom functionality to frameworks, focusing on understanding architecture, identifying extension points, and best practices for integration and debugging.

See all articles