|
|
|
ช่วยดูโค้ดเช็คคำหยาบทีครับ ตอนนี้เขียนโค้ดเช็คคำหยาบ จากตาราง rude ต้องการให้มันเช็ค ข้อความจากตาราง topic ถ้ามันเป็นคำหยาบให้แทนที่ด้วย |
|
|
|
|
|
|
|
ลองแบบนี้ดูครับ
Code (PHP)
<?php
include "config.php";
$sql= "select * from topic";
$query = mysqli_query($conn,$sql);
$sqlrude = "select rude_word from rude";
$queryrude = mysqli_query($conn,$sqlrude);
$wordlist=array();
while($resultrude = mysqli_fetch_assoc($queryrude)) $wordlist[]=$resultrude['rude_word'];
?>
<tbody>
<?php
while($result = mysqli_fetch_array($query)){
$topic = str_replace($wordlist,'***', $result['topic_name']);
?>
<tr class="odd gradeX">
<td> <?php echo $result['id']; ?></td>
<td><?php echo $topic;?></td>
<td> <a href="edittopic.php?id=<?php echo $result['id']; ?>">แก้ไข</a></td>
<td><a href="JavaScript:if(confirm('คุณยืนยันจะทำการลบ?')==true){window.location='deletetopic.php?id=
<?php echo $result["id"];?>';}">ลบ</a></td>
</tr>
<?php
}
?>
</tbody>
|
|
|
|
|
Date :
2015-11-26 15:36:34 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หรืออีกวิธีก็เขียนฟังก์ชั่นไว้เองก็ได้นะครับ เช่น
Code (PHP)
<?php
header('Content-Type: text/html; charset=utf-8');
date_default_timezone_set("Asia/Bangkok");
function test($message){
$banword = array('fuck', 'suck', 'วรนุช','เหี้ย'); //คำไหนที่คิดว่าหยาบคายก็เพิ่มไว้ในนี้
$message = str_ireplace($banword, '***', $message);
return $message;
}
echo test('มึงนี่ fuck จิงๆ'); //การใช้งาน
?>
|
|
|
|
|
Date :
2015-11-26 18:06:15 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|