Home Backend Development PHP Tutorial HTML preview regular replacement

HTML preview regular replacement

Jul 25, 2016 am 09:09 AM

HTML preview regular replacement
  1. /**
  2. * HTML replacement processing class, consider the following replacements
  3. * 1. img src: '/]+? )/i'
  4. * 2. a href : '/]+?)/i'
  5. * 3. ifram.src : '/]+?)/i'
  6. * 4. frame src : '/< frame(.+?)src=(['" ])?(.+?)([ >]+?)/i'
  7. * 5. js : '/window.open([( ]+?)( ['" ]+?)(.+?)([ )+?])/i'
  8. * 6. css : '/background(.+?)url([( ])(['" ]+?) (.+?)([ )+?])/i'
  9. */
  10. class Myreplace {
  11. private $moudle_array = array('udata','tdata','tresult','dresult');
  12. private $content;
  13. private $relative_dirname;
  14. private $projectid;
  15. private $moudle;
  16. function __construct() {
  17. $this->CI = &get_instance ();
  18. }
  19. /**
  20. * Replacement
  21. * @param string $content HTML content
  22. * @param string $relative relative path
  23. * @param int $projectid project id
  24. * @moudle string $moudle template identifier: udata,tdata,tresult,dresult
  25. */
  26. public function my_replace($content,$relative,$projectid,$moudle) {
  27. $this->content = $content;
  28. $this->relative_dirname = $relative;
  29. $this->projectid = $projectid;
  30. if(in_array(strtolower($moudle),$this->moudle_array))
  31. $this->moudle = $moudle;
  32. else exit;
  33. switch($this->moudle) {
  34. case 'udata':
  35. $this->CI->load->model('mupload_data','model');
  36. break;
  37. case 'tdata':
  38. $this->CI->load->model('taskdata','model');
  39. break;
  40. case 'tresult':
  41. $this->CI->load->model('taskresult','model');
  42. break;
  43. case 'dresult':
  44. $this->CI->load->model('dmsresult','model');
  45. break;
  46. default:
  47. break;
  48. }
  49. $pattern = '/]+?)/i';
  50. $content = preg_replace_callback( $pattern, array($this, 'image_replace') , $content );
  51. $pattern = '/]+?)/i';
  52. $content = preg_replace_callback( $pattern, array($this, 'html_replace') , $content );
  53. $pattern = '/]+?)/i';
  54. $content = preg_replace_callback( $pattern, array($this, 'iframe_replace') , $content );
  55. $pattern = '/]+?)/i';
  56. $content = preg_replace_callback( $pattern, array($this, 'frame_replace'), $content );
  57. $pattern = '/window.open([( ]+?)(['" ]+?)(.+?)([ )]+?)/i';
  58. $content = preg_replace_callback( $pattern, array($this, 'js_replace'), $content );
  59. $pattern = '/background(.+?)url([( ])(['" ]+?)(.+?)([ )+?])/i';
  60. $content = preg_replace_callback( $pattern, array($this, 'css_replace'), $content);
  61. return $content;
  62. }
  63. private function image_replace($matches) {
  64. if(count($matches) < 4) return '';
  65. if( empty($matches[3]) ) return '';
  66. $matches[3] = rtrim($matches[3],''"/');
  67. //获取图片的id
  68. $parent_dir_num = substr_count( $matches[3], '../');
  69. $relative_dirname = $this->relative_dirname;
  70. for($i=0; $i<$parent_dir_num; $i++) {
  71. $relative_dirname = substr( $relative_dirname, 0, strrpos($relative_dirname,"/") );
  72. }
  73. $relativepath = rtrim($relative_dirname,'/') . '/'.ltrim($matches[3],'./');
  74. $image_id = $this->CI->model->get_id_by_path_and_project($relativepath,$this->projectid);
  75. //输出
  76. if( !empty($image_id) ) {
  77. if($this->moudle == 'dresult') {
  78. return "CI->config->item("base_url")."cdms/".$this->moudle."/readpic/$image_id?pid=".$this->projectid .$matches[2]. $matches[4];
  79. } else {
  80. return "CI->config->item("base_url")."cdms/".$this->moudle."/picfile/$image_id?pid=".$this->projectid .$matches[2]. $matches[4];
  81. }
  82. } else {
  83. return " }
  84. }
  85. private function html_replace( $matches ) {
  86. if(count($matches) < 4) return '';
  87. if( empty($matches[3]) ) return '';
  88. //If href link ( If $matches[3]) starts with http or www or mailto, it will not be processed
  89. //if(preg_match('/^[http|www|mailto](.+?)/i',$matches[3]) )
  90. // return " $matches[3] = rtrim($ matches[3],''"/');
  91. //Process anchor point
  92. if(substr_count($matches[3],'#')>0)
  93. $matches[3] = substr($matches[3 ],0,strrpos($matches[3],'#'));
  94. //Get the id of html
  95. $parent_dir_num = substr_count( $matches[3], '../');
  96. $relative_dirname = $this ->relative_dirname;
  97. for($i=0; $i<$parent_dir_num; $i++) {
  98. $relative_dirname = substr( $relative_dirname, 0, strrpos($relative_dirname,"/") );
  99. }
  100. $relativepath = rtrim($relative_dirname,'/') . '/'.ltrim($matches[3],'./');
  101. $txtfile_id = $this->CI->model->get_id_by_path_and_project($relativepath ,$this->projectid);
  102. //Output
  103. if( !empty($txtfile_id ) ) {
  104. if($this->moudle == 'dresult') {
  105. return "moudle."/readfile /$txtfile_id?pid=".$this->projectid .$matches[2].$matches[4];
  106. } else {
  107. return "CI->config->item("base_url")."cdms/".$this->moudle."/txtfile/$txtfile_id?pid=".$ this->projectid .$matches[2].$matches[4];
  108. }
  109. } else {
  110. return " }
  111. }
  112. private function iframe_replace( $matches ) {
  113. if(count($matches) < 4) return '';
  114. if( empty($matches[3]) ) return '';
  115. $matches[3] = rtrim($matches[3],''"/');
  116. //Process anchor point
  117. if(substr_count($matches[ 3],'#')>0)
  118. $matches[3] = substr($matches[3],0,strrpos($matches[3],'#'));
  119. //Get the id of html
  120. $parent_dir_num = substr_count( $matches[3], '../');
  121. $relative_dirname = $this->relative_dirname;
  122. for($i=0; $i<$parent_dir_num; $i++) {
  123. $relative_dirname = substr( $relative_dirname, 0, strrpos($relative_dirname,"/") );
  124. }
  125. $relativepath = rtrim($relative_dirname,'/') . '/'.ltrim($matches[3],'./ ');
  126. $txtfile_id = $this->CI->model->get_id_by_path_and_project($relativepath,$this->projectid);
  127. //Output
  128. if( !empty($txtfile_id ) ) {
  129. if ($this->moudle == 'dresult') {
  130. return "CI->config- >item("base_url")."cdms/".$this->moudle."/readfile/$txtfile_id?pid=".$this->projectid .$matches[2].$matches[4] ;
  131. } else {
  132. return "CI->config->item("base_url"). "cdms/".$this->moudle."/txtfile/$txtfile_id?pid=".$this->projectid .$matches[2].$matches[4];
  133. }
  134. } else {
  135. return " }
  136. }
  137. private function frame_replace ( $matches ) {
  138. if(count($matches) < 4) return '';
  139. if( empty($matches[3]) ) return '';
  140. $matches[3] = rtrim($matches[3 ],''"/');
  141. //Process anchor point
  142. if(substr_count($matches[3],'#')>0)
  143. $matches[3] = substr($matches[3],0 ,strrpos($matches[3],'#'));
  144. //Get the id of html
  145. $parent_dir_num = substr_count( $matches[3], '../');
  146. $relative_dirname = $this-> relative_dirname;
  147. for($i=0; $i<$parent_dir_num; $i++) {
  148. $relative_dirname = substr( $relative_dirname, 0, strrpos($relative_dirname,"/") );
  149. }
  150. $relativepath = rtrim( $relative_dirname,'/') . '/'.ltrim($matches[3],'./');
  151. $txtfile_id = $this->CI->model->get_id_by_path_and_project($relativepath,$this ->projectid);
  152. //Output
  153. if( !empty($txtfile_id ) ) {
  154. if($this->moudle == 'dresult') {
  155. return "moudle."/readfile/$txtfile_id ?pid=".$this->projectid.$matches[2].$matches[4];
  156. }else {
  157. return "CI->config->item("base_url")."cdms/".$this->moudle."/txtfile/$txtfile_id?pid=".$this->projectid.$matches[2].$matches[4];
  158. }
  159. } else {
  160. return " }
  161. }
  162. private function js_replace( $matches ){
  163. if(count($matches) < 4) return '';
  164. if( empty($matches[3]) ) return '';
  165. //处理链接
  166. $arr_html = split(',',$matches[3]);
  167. $href = $arr_html[0];
  168. $other = '';
  169. for($i=0; $i $other = $arr_html[$i].", ";
  170. $other = rtrim($other,", ");
  171. $href =rtrim($href,''"');
  172. //处理锚点
  173. if(substr_count($href,'#')>0)
  174. return "window.open".$matches[1].$matches[2].$matches[3].$matches[4];;
  175. //获取html的id
  176. $parent_dir_num = substr_count( $href, '../');
  177. $relative_dirname = $this->relative_dirname;
  178. for($i=0; $i<$parent_dir_num; $i++) {
  179. $relative_dirname = substr( $relative_dirname, 0, strrpos($relative_dirname,"/") );
  180. }
  181. $relativepath = rtrim($relative_dirname,'/') . '/'.ltrim($href,'./');
  182. $txtfile_id = $this->CI->model->get_id_by_path_and_project($relativepath,$this->projectid);
  183. //输出
  184. if( !empty($txtfile_id ) ) {
  185. if($this->moudle == 'dresult') {
  186. return "window.open".$matches[1].$matches[2].$this->CI->config->item("base_url")."cdms/".$this->moudle."/readfile/$txtfile_id?pid=".$this->projectid.$matches[2].','.$other.$matches[4];
  187. } else {
  188. return "window.open".$matches[1].$matches[2].$this->CI->config->item("base_url")."cdms/".$this->moudle."/txtfile/$txtfile_id?pid=".$this->projectid.$matches[2].','.$other.$matches[4];
  189. }
  190. } else {
  191. return "window.open".$matches[1].$matches[2].$matches[3].$matches[4];
  192. }
  193. }
  194. private function css_replace( $matches ) {
  195. if(count($matches) < 5) return '';
  196. if( empty($matches[4]) ) return '';
  197. $matches[4] = rtrim($matches[4],''"/');
  198. //获取图片的id
  199. $parent_dir_num = substr_count( $matches[4], '../');
  200. $relative_dirname = $this->relative_dirname;
  201. for($i=0; $i<$parent_dir_num; $i++) {
  202. $relative_dirname = substr( $relative_dirname, 0, strrpos($relative_dirname,"/") );
  203. }
  204. $relativepath = rtrim($relative_dirname,'/') . '/'.ltrim($matches[4],'./');
  205. $image_id = $this->CI->model->get_id_by_path_and_project($relativepath,$this->projectid);
  206. //输出
  207. if( !empty($image_id) ) {
  208. if($this->moudle == 'dresult') {
  209. return "background".$matches[1]."url".$matches[2].$matches[3].$this->CI->config->item("base_url")."cdms/".$this->moudle."/readpic/$image_id?pid=".$this->projectid .$matches[3]. $matches[5];
  210. } else {
  211. return "background".$matches[1]."url".$matches[2].$matches[3].$this->CI->config->item("base_url")."cdms/".$this->moudle."/picfile/$image_id?pid=".$this->projectid .$matches[3]. $matches[5];
  212. }
  213. } else {
  214. return "background".$matches[1]."url".$matches[2].$matches[3].$matches[4].$matches[3].$matches[5];
  215. }
  216. }
  217. }
  218. /* End of Myreplace.php */
  219. /* Location: /application/libraries/Myreplace.php */
复制代码


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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

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)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Discover File Downloads in Laravel with Storage::download Discover File Downloads in Laravel with Storage::download Mar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

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 Register and Use Laravel Service Providers How to Register and Use Laravel Service Providers Mar 07, 2025 am 01:18 AM

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

See all articles