您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關怎么在php中利用Memcached實現一個留言板功能,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
MyPdo.php
<?php class MyPdo{ private $pdo; function __construct() { $this->pdo = $this->getPdo(); } /** * CreatePDO * * @return PDO */ public function getPdo() { $dbms='mysql'; $dbName='testdb'; $user='root'; $pwd='diligentyang'; $host='localhost'; $dsn="$dbms:host=$host;dbname=$dbName"; try{ $pdo=new PDO($dsn,$user,$pwd); }catch(Exception $e){ echo $e->getMessage().'<br>'; exit(); } $pdo->setAttribute(PDO::ATTR_EMULATE_PREPARES, false); $pdo->exec("set names utf8"); return $pdo; } /** * Execute SQL * * @param string $sql Sql * @param string $mode Mode * * @return mixed */ function query($sql = "", $mode = "array") { $sql = trim($sql); if ($sql == "") { $this->showErrors("the mothe query neet at least one param!"); } $query = $this->pdo->query($sql); if (!$query) { $this->showErrors("the sql string is false"); } if (strpos(strtolower($sql), "select") ===false) { return $query; } switch ($mode) { case 'array' : $res = $query->fetchAll(PDO::FETCH_ASSOC); break; case 'object' : $res = $query->fetchObject(); break; case 'count': $res = $query->rowCount(); break; default: $this->showErrors("SQLERROR: please check your second param!"); } return $res; } /** * 提示錯誤 * * @param string $str 錯誤提示內容 */ public function showErrors($str) { echo "<h2>$str<h2/>"; exit(); } }
ShowMessage.php
<?php include("MyPdo.php"); //連接Memcached服務器 $m = new Memcached(); $m->addServer('127.0.0.1',11211); //獲取Memcached中的list $res = $m->get("list"); //如果沒有數據,則從數據庫中查出,并放入Memcached中,如果有數據則直接輸出 if(!$res){ $MyPdo = new MyPdo(); $res = $MyPdo->query("select * from message","array"); $m->set('list',$res,3600); } foreach($res as $val){ echo $val['title']."-------".$val['content']."<br>"; } ?> <a href="AddMessage.php" rel="external nofollow" >添加留言</a>
AddMessage.php
<form action="CheckAdd.php" method="post"> 標題:<input type="text" name="title"><br> 內容:<input type="text" name="content"><br> <input type="submit" value="提交"> </form>
CheckAdd.php
<?php include("MyPdo.php"); //連接Memcached服務器 $m = new Memcached(); $m->addServer('127.0.0.1',11211); $title = $_POST['title']; $content = $_POST['content']; $MyPdo = new MyPdo(); $res = $MyPdo->query("insert into message(title,content) values('$title','$content')"); if($res){//如果insert語句執行成功則清除Memcache中的緩存 $m->delete("list"); } header("location:ShowMessage.php");
看完上述內容,你們對怎么在php中利用Memcached實現一個留言板功能有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。