|
|
|
ช่วยดูให้หน่อยค่ะ Warning: preg_replace() expects parameter 4 to be long, string given in .../Data_select_cor.php on line 35 |
|
|
|
|
|
|
|
ช่วยดูให้หน่อยค่ะ Warning: preg_replace() expects parameter 4 to be long, string given in .../Data_select_Fac.php on line 35
อันนี้เป็นบรรทัดที่มีปัญหาค่ะ
Code (PHP)
$display_name = preg_replace("/(" . $q . ")/i", "<b>$1</b>", $name,"UTF-8");
โค้ดเต็มค่ะ มี 2 ไฟลที่เรียกใช้ร่วมกัน
Data_select_cor.php (ไฟล์ที่ฟ้อง warning บรรทัดที่ 35 ค่ะ)
<?php
header("Content-type:text/html; charset=UTF-8");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
// เชื่อมต่อฐานข้อมูล
$link=mysql_connect("xxx.go.th","c1tax_exempt","texm11") or die("error".mysql_error());
mysql_select_db("c1tax_exempt",$link);//DB
mysql_query("SET NAMES UTF8");
include("con_data_select.php");
mysql_query("SET character_set_results=UTF8");
mysql_query("SET character_set_client=UTF8");
mysql_query("SET character_set_connection=UTF8");
mb_internal_encoding('UTF-8');
mb_http_output('UTF-8');
mb_http_input('UTF-8');
mb_language('uni');
mb_regex_encoding('UTF-8');
ob_start('mb_output_handler');
setlocale(LC_ALL, 'th_TH');
$q = urldecode($_GET["q"]);
//$q= iconv('utf-8', 'tis-620', $_GET['test']);
$pagesize = 20; // จำนวนรายการที่ต้องการแสดง
$table_db=" corporation"; // ตารางที่ต้องการค้นหา
$find_field="Cor_name"; // ฟิลที่ต้องการค้นหา
$sql = "select * from $table_db where locate('$q', $find_field) > 0 order by locate('$q', $find_field), $find_field limit $pagesize";
$results = mysql_query($sql);
while ($row = mysql_fetch_array( $results )) {
$id = $row["ID_Cor"]; // ฟิลที่ต้องการส่งค่ากลับ
$name =$row["Cor_name"]; // ฟิลที่ต้องการแสดงค่า
// ป้องกันเครื่องหมาย '
$name = str_replace("'", "'", $name);
// กำหนดตัวหนาให้กับคำที่มีการพิมพ์
$display_name = preg_replace("/(" . $q . ")/i", "<b>$1</b>", $name,"UTF-8");
echo "<li onselect=\"this.setText('$name').setValue('$id');\">$display_name</li>";
}
mysql_close();
?>
Data_search_cor.php
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type="text/javascript" src="autocomplete.js"></script>
<link rel="stylesheet" href="autocomplete.css" type="text/css"/>
<input name="Cor_name<?=$i;?>" type="text" id="Cor_name" size="30" />
<input name="ID_Cor" type="hidden" id="ID_Cor" value="" />
<script type="text/javascript">
//อันที่1
function make_autocom(autoObj,showObj){
var mkAutoObj=autoObj;
var mkSerValObj=showObj;
new Autocomplete(mkAutoObj, function() {
this.setValue = function(id) {
document.getElementById(mkSerValObj).value = id;
}
if ( this.isModified )
this.setValue("");
if ( this.value.length < 1 && this.isNotClick )
return ;
return "Data_select_cor.php?q=" +encodeURIComponent(this.value);
});
}
// การใช้งาน
// make_autocom(" id ของ input ตัวที่ต้องการกำหนด "," id ของ input ตัวที่ต้องการรับค่า");
//make_autocom("show_arti_topic","h_arti_id");
make_autocom("Cor_name","ID_Cor");
</script>
รบกวนด้วยนะคะ ขอบคุณค่ะ
T_____T
Tag : PHP, MySQL
|
ประวัติการแก้ไข 2015-08-03 11:24:36 2015-08-03 11:25:21
|
|
|
|
|
Date :
2015-08-03 11:22:18 |
By :
momiya123 |
View :
905 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$display_name = preg_replace("/(" . $q . ")/i", "<b>$1</b>", $name,"UTF-8");
แก้เป็น
$display_name = preg_replace("/(" . $q . ")/iu", "<b>$1</b>", $name);
|
|
|
|
|
Date :
2015-08-03 11:52:44 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|