คำสั่ง PHP สำหรับใช้ดึงข้อความในวงเล็บ (xxxxx) ออกมาใช้งาน
เช่น ต้องการหาความยาวตัวอักษรของฟิล์
<?php
preg_match('#\((.*?)\)#', 'varchar(100)', $match);
$max_length = $match[1];
echo $max_length;
?>
//OUTPUT
100
อ้างอิง : https://stackoverflow.com/questions/196520/php-best-way-to-extract-text-within-parenthesis
ความคิดเห็น
แสดงความคิดเห็น