The above is the entire content of this article, I hope it will be helpful to everyone’s study. <\/p>\n\n\n\n
<\/p>\n
This article introduces the implementation code of PHP simple complaint page and shares it with you for your reference. The specific content is as follows
php code:
<?php /* * 設(shè)計模式練習 * 1.數(shù)據(jù)庫連接類(單例模式) * 2.調(diào)用接口實現(xiàn)留言本功能(工廠模式) * 3.實現(xiàn)分級舉報處理功能(責任鏈模式) * 4.發(fā)送不同組合的舉報信息(橋接模式) * 5.發(fā)送不同格式的舉報信息(適配器模式) * 6.在投訴內(nèi)容后自動追加時間(裝飾器模式) * 7.根據(jù)會員登錄信息變換顯示風格(觀察者模式) * 8.根據(jù)發(fā)帖長度加經(jīng)驗值(策略模式) */ interface DB { function conn(); } /** * 單例模式 */ class MysqlSingle implements DB { protected static $_instance = NULL; public static function getInstance() { if (!self::$_instance instanceof self) { self::$_instance = new self; } return self::$_instance; } final protected function __construct() { echo 'Mysql單例創(chuàng)建成功<br>'; } final protected function __clone() { return false; } public function conn() { echo 'Mysql連接成功<br>'; } } /** * 工廠模式 */ interface Factory { function createDB(); } class MysqlFactory implements Factory { public function createDB() { echo 'Mysql工廠創(chuàng)建成功<br>'; return MysqlSingle::getInstance(); } } /** * 根據(jù)用戶名顯示不同風格 * 觀察者模式 */ class Observer implements SplSubject { protected $_observers = NULL; public $_style = NULL; public function __construct($style) { $this->_style = $style; $this->_observers = new SplObjectStorage(); } public function show() { $this->notify(); } public function attach(SplObserver $observer) { $this->_observers->attach($observer); } public function detach(SplObserver $observer) { $this->_observers->detach($observer); } public function notify() { $this->_observers->rewind(); while ($this->_observers->valid()) { $observer = $this->_observers->current(); $observer->update($this); $this->_observers->next(); } } } class StyleA implements SplObserver { public function update(SplSubject $subject) { echo $subject->_style . ' 模塊A<br>'; } } class StyleB implements SplObserver { public function update(SplSubject $subject) { echo $subject->_style . ' 模塊B<br>'; } } /** * 根據(jù)不同方式進行投訴 * 橋接模式 */ class Bridge { protected $_obj = NULL; public function __construct($obj) { $this->_obj = $obj; } public function msg($type) { } public function show() { $this->msg(); $this->_obj->msg(); } } class BridgeEmail extends Bridge { public function msg() { echo 'Email>>'; } } class BridgeSms extends Bridge { public function msg() { echo 'Sms>>'; } } class Normal { public function msg() { echo 'Normal<br>'; } } class Danger { public function msg() { echo 'Danger<br>'; } } /** * 適配器模式 */ class Serialize { public $content = NULL; public function __construct($content) { $this->content = serialize($content); } public function show() { return '序列化格式:<br>' . $this->content; } } class JsonAdapter extends Serialize { public function __construct($content) { parent::__construct($content); $tmp = unserialize($this->content); $this->content = json_encode($tmp, TRUE); } public function show() { return 'Json格式:<br>' . $this->content; } } /** * 在投訴內(nèi)容后自動追加 * 裝飾器模式 */ class Base { protected $_content = NULL; public function __construct($content) { $this->_content = $content; } public function getContent() { return $this->_content; } } class Decorator { private $_base = NULL; public function __construct(Base $base) { $this->_base = $base; } public function show() { return $this->_base->getContent() . '>>系統(tǒng)時間:' . date('Y-m-d H:i:s', time()); } } /** * 分級舉報處理功能 * 責任鏈模式 */ class level1 { protected $_level = 1; protected $_top = 'Level2'; public function deal($level) { if ($level <= $this->_level) { echo '處理級別:1<br>'; return; } $top = new $this->_top; $top->deal($level); } } class level2 { protected $_level = 2; protected $_top = 'Level3'; public function deal($level) { if ($level <= $this->_level) { echo '處理級別:2<br>'; return; } $top = new $this->_top; $top->deal($level); } } class level3 { protected $_level = 3; protected $_top = 'Level2'; public function deal($level) { echo '處理級別:3<br>'; return; } } if (!empty($_POST)) { echo '<h1>PHP設(shè)計模式</h1>'; //連接數(shù)據(jù)庫——工廠+單例模式 $mysqlFactory = new MysqlFactory(); $single = $mysqlFactory->createDB(); $single->conn(); echo '<br>'; //觀察者模式 $username = $_POST['username']; $ob = new Observer($username); $a = new StyleA(); $ob->attach($a); $b = new StyleB(); $ob->attach($b); $ob->show(); echo '<br>'; $ob->detach($b); $ob->show(); echo '<br>'; //橋接模式 $typeM = $_POST['typeM']; $typeN = 'Bridge' . $_POST['typeN']; $obj = new $typeN(new $typeM); $obj->show(); echo '<br>'; //適配器模式 $post = $_POST; $obj = new Serialize($post); echo $obj->show(); echo '<br>'; $json = new JsonAdapter($post); echo $json->show(); echo '<br>'; echo '<br>'; //裝飾器模式 $content = $_POST['content']; $decorator = new Decorator(new Base($content)); echo $decorator->show(); echo '<br>'; //責任鏈模式 echo '<br>'; $level = $_POST['level']; $deal = new Level1(); $deal->deal(intval($level)); return; } require("0.html");
html code:
<!DOCTYPE html> <!-- To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the template in the editor. --> <html> <head> <title>PHP設(shè)計模式</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> div{border:solid gray 1px;margin-top:10px;height: 100px;width: 200px;} </style> </head> <body> <form action="0.php" method="post"> <h1>用戶名</h1> <select id="username" name="username"> <option value="Tom">Tom</option> <option value="Lily">Lily</option> </select> <h1>投訴方式</h1> <select id="type" name="typeM"> <option value="Normal">Normal</option> <option value="Danger">Danger</option> </select> <select id="type" name="typeN"> <option value="Email">Email</option> <option value="Sms">Sms</option> </select> <h1>處理級別</h1> <select id="level" name="level"> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> </select> <h1>投訴內(nèi)容</h1> <textarea id="content" name="content" rows="3"></textarea> <button type="submit">提交</button> </form> </body> </html>
The above is the entire content of this article, I hope it will be helpful to everyone’s study.
Undress images for free
AI-powered app for creating realistic nude photos
Online AI tool for removing clothes from photos.
AI clothes remover
Swap faces in any video effortlessly with our completely free AI face swap tool!
Easy-to-use and free code editor
Chinese version, very easy to use
Powerful PHP integrated development environment
Visual web development tools
God-level code editing software (SublimeText3)
In PHP, you can use square brackets or curly braces to obtain string specific index characters, but square brackets are recommended; the index starts from 0, and the access outside the range returns a null value and cannot be assigned a value; mb_substr is required to handle multi-byte characters. For example: $str="hello";echo$str[0]; output h; and Chinese characters such as mb_substr($str,1,1) need to obtain the correct result; in actual applications, the length of the string should be checked before looping, dynamic strings need to be verified for validity, and multilingual projects recommend using multi-byte security functions uniformly.
AgeneratorinPHPisamemory-efficientwaytoiterateoverlargedatasetsbyyieldingvaluesoneatatimeinsteadofreturningthemallatonce.1.Generatorsusetheyieldkeywordtoproducevaluesondemand,reducingmemoryusage.2.Theyareusefulforhandlingbigloops,readinglargefiles,or
To prevent session hijacking in PHP, the following measures need to be taken: 1. Use HTTPS to encrypt the transmission and set session.cookie_secure=1 in php.ini; 2. Set the security cookie attributes, including httponly, secure and samesite; 3. Call session_regenerate_id(true) when the user logs in or permissions change to change to change the SessionID; 4. Limit the Session life cycle, reasonably configure gc_maxlifetime and record the user's activity time; 5. Prohibit exposing the SessionID to the URL, and set session.use_only
You can use substr() or mb_substr() to get the first N characters in PHP. The specific steps are as follows: 1. Use substr($string,0,N) to intercept the first N characters, which is suitable for ASCII characters and is simple and efficient; 2. When processing multi-byte characters (such as Chinese), mb_substr($string,0,N,'UTF-8'), and ensure that mbstring extension is enabled; 3. If the string contains HTML or whitespace characters, you should first use strip_tags() to remove the tags and trim() to clean the spaces, and then intercept them to ensure the results are clean.
There are two main ways to get the last N characters of a string in PHP: 1. Use the substr() function to intercept through the negative starting position, which is suitable for single-byte characters; 2. Use the mb_substr() function to support multilingual and UTF-8 encoding to avoid truncating non-English characters; 3. Optionally determine whether the string length is sufficient to handle boundary situations; 4. It is not recommended to use strrev() substr() combination method because it is not safe and inefficient for multi-byte characters.
The urlencode() function is used to encode strings into URL-safe formats, where non-alphanumeric characters (except -, _, and .) are replaced with a percent sign followed by a two-digit hexadecimal number. For example, spaces are converted to signs, exclamation marks are converted to!, and Chinese characters are converted to their UTF-8 encoding form. When using, only the parameter values ??should be encoded, not the entire URL, to avoid damaging the URL structure. For other parts of the URL, such as path segments, the rawurlencode() function should be used, which converts the space to . When processing array parameters, you can use http_build_query() to automatically encode, or manually call urlencode() on each value to ensure safe transfer of data. just
To set and get session variables in PHP, you must first always call session_start() at the top of the script to start the session. 1. When setting session variables, use $_SESSION hyperglobal array to assign values ??to specific keys, such as $_SESSION['username']='john_doe'; it can store strings, numbers, arrays and even objects, but avoid storing too much data to avoid affecting performance. 2. When obtaining session variables, you need to call session_start() first, and then access the $_SESSION array through the key, such as echo$_SESSION['username']; it is recommended to use isset() to check whether the variable exists to avoid errors
Key methods to prevent SQL injection in PHP include: 1. Use preprocessing statements (such as PDO or MySQLi) to separate SQL code and data; 2. Turn off simulated preprocessing mode to ensure true preprocessing; 3. Filter and verify user input, such as using is_numeric() and filter_var(); 4. Avoid directly splicing SQL strings and use parameter binding instead; 5. Turn off error display in the production environment and record error logs. These measures comprehensively prevent the risk of SQL injection from mechanisms and details.