PHP ตัดทอนคำ หรือประโยค

By | 19/06/2011

ด้านล่างครับ ทำง่ายๆ ไปก่อนไม่ซับซ้อนอะไรครับ

<?php
$subject_string = "How to Truncate A String with Full Whole Word At the End"; //ข้อความที่ต้องการตัดทอน
$new_subject_string = substr($subject_string, 0, 40);?>
<h2><strong>หัวข้อ: </strong><?php echo "$new_subject_string"; ?>..</h2>

ผลก็จะออมาแบบนี้ครับ
หัวข้อ: How to Truncate A String with Full Whole..

ใส่ความเห็น