


Baidu Xiongzhao professional Q&A PHP method pushes the complete code (with instructions)
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~~)
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.
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['url']) ? $_GET['url'] : ''; if(!$url){ echo '没有地址参数';exit; } $urls = array(0=>$url); $api = 'http://data.zz.baidu.com/urls?appid=xxxx&token=xxxx&type=qa&domain=教育'; $ch = curl_init(); $options = array( CURLOPT_URL => $api, CURLOPT_POST => true, CURLOPT_RETURNTRANSFER => true, CURLOPT_POSTFIELDS => implode("\n", $urls), CURLOPT_HTTPHEADER => array('Content-Type: text/plain'), ); curl_setopt_array($ch, $options); $result = curl_exec($ch); echo $result;
2. Then upload baiduxiongzhang.php to the root directory of the website, and access this PHP file on the browser, the following will appear:
3. We will push professional Q&A through the following link:
http://www.xxx.com/baiduxiongzhang.php?url=
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
4. After successful push, the following information will be returned:
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)》
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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Alipay PHP...

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,

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 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...

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

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�...

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

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