Record the new functions.

  • Add the "Hide Comments" function and use the tag [Hide comments] [/Hide comments] The comment can be hidden, and the "whisper" from the reviewer to the author, or the "private reply" from the author to the reviewer can be realized. (The comment content will be sent to the corresponding mailbox by mail. The background label of the author will not be effective, and the label of the mail page will not be effective.)
 //The codes are as follows: preg_replace('! [Hide Comment] (. *) [/Hide Comment]! UU ','<b><i>[The content here is hidden]</b></i>', content);
  • For the failure of images in earlier articles, add the oneerror parameter in the image, and replace it with the str_replace function on the output page.
 Str_replace ("<img", "<img error=" javascript: this. src='Failure prompt map address'  "", content); //If the failure prompt diagram does not exist, the page will enter an endless loop.
  • Pause the access to some areas, and the access prompt is 403 or timeout. (CDN shielding)
  • The background of the background management interface adopts the daily Bing background picture. Daily Bing background image acquisition code:
 $str = file_get_contents(' http://cn.bing.com/HPImageArchive.aspx?format=js&idx=0&n=1 ');// Get address $array = json_decode($str);// analysis $imgurl = $array->{"images"}[0]->{"url"};// As long as the picture address $imgurl = ' http://cn.bing.com '.$ Imgurl;//Piece together the image address //Next, you can choose to write a file or output it. Jiang Chen defaults to write a file, which has been collected for nearly a year now, and automatically updates the wallpaper every day through @ Wudao's small tool written in easy language.
  • Close all article comments in one sentence:
 Update table set allow_remark='n '
  • Change the image address of the avatar:
 https://cdn.v2ex.com/gravatar
  • Remove the website filing number.
  • The site moved to the computer room in Shatian, Hong Kong. After the filing number disappeared completely (that is, after the cloud CDN was unavailable again), the site resumed its access to some regions.

  • The default image is in the center, and I have added code in CSS that I don't know what it is.

Dream Chenfeng uses the Emlog5.3.1 program. Currently, Emlog6.0 has been released, but because of the template, program and other reasons, it has been sticking to 5.3.1. If there is any function needs, it is always looking everywhere. Finally, I would like to thank Mr. Wang Yushuang, Tiger Green Forest - Tiger Club Swimming, and Xingzhiyuan for their blog posts and posts.

For example:

one Install Emlog5.3.1 under PHP 7 (Source: Xingzhiyuan)

two PHP regular expression learning: parsing UBB of Tiger Green Forest (Source: Tiger Green Forest)

End of full text[ Like this article, reward the author! ]