|
|
|
สอบถามเรื่องแสดงผลข้อมูลหน่อยค่ะ ในตารางมีฟิลด์ message อ่ะค่ะ เก็บข้อความอย่างนี้ค่ะ< |
|
|
|
|
|
|
|
ใช้การ replace ครับ
Code (PHP)
$strText = "<font size=4 color=#ff0000>Text</font>";
echo str_replace("font size=4","font size=2",$strText);
PHP str_replace()
|
|
|
|
|
Date :
2010-07-12 21:39:05 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่วินคะ และถ้าใน message นั้น ไม่ได้ระบุแค่ <font size=4> อย่างเดียวล่ะคะ อาจจะมี
1. <b>ตัวหนา</b>
2. <u>ขี้เส้นใต้</u>
3. <br>มีการปัดบรรทัด
4. <ul>
5. <strong>
6. <center> หรือ <div>
เป็นต้น
อย่างนี้เรามีวิธีตัดไปทั้งหมดได้มั้ยคะ
|
|
|
|
|
Date :
2010-07-13 08:27:31 |
By :
idea-soft |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
$string = 'The quick brown fox jumped over the lazy dog.';
$patterns = array();
$patterns[0] = '/quick/';
$patterns[1] = '/brown/';
$patterns[2] = '/fox/';
$replacements = array();
$replacements[2] = 'bear';
$replacements[1] = 'black';
$replacements[0] = 'slow';
echo preg_replace($patterns, $replacements, $string);
?>
|
|
|
|
|
Date :
2010-07-13 18:18:03 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|