Home  >  Article  >  Backend Development  >  The principle of implementing the function of the free version of the train collector using the paid version_PHP tutorial

The principle of implementing the function of the free version of the train collector using the paid version_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:43:40897browse

hi Dear collectors of the free Locomotive collector:
The free version of Locomotive does not support plug-in processing of collection results, such as using PHP to assist in processing the results, and Locomotive itself has incomplete support for regular expressions,
resulting in the collection of Some content with obfuscated text does not perform well, so how do we filter those obfuscated strings? "

Obfuscated text
Here is the content");
We do a little processing on the server side:
$_POST["content"] = preg_replace("Regular expression Formula","",$_POST["content"]);
You can use familiar tools to complete the work.
A friend said, what should I do if my server-side code is encrypted?
It’s actually very simple. For example, if add.php is encrypted, then rename add.php to add_ori.php
And then create a new add.php
//Process the uploaded data
....
include dirname(__FILE__)."/add_ori.php";
?>
This is it That's it


http://www.bkjia.com/PHPjc/320692.html

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/320692.htmlTechArticlehi Dear collectors of free Locomotive collector: The free version of Locomotive does not support plug-in processing of collection results, such as using php To assist in processing the results, while the locomotive itself has regular expression...
Statement:
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