묻고답하기
회원정보 전화번호 추출 ... 문제
2016.01.03 15:06
<?php
$info = array(
"host" => "db",
"user" => "db",
"pass" => "db",
"db" => "db",
"table" => "xe_member"
);
$xls_filename = "cell_number.xls";
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=$xls_filename");
$con = mysql_connect($info[host], $info[user], $info[pass]) || die(mysql_error());
mysql_query("set names utf8");
$con_db = mysql_select_db($info[db]) || die(mysql_error());
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang="EN" dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv=Content-Type content=text/html; charset="utf-8" />
</head>
<body>
<table border=1>
<tr>
<?php
$fields = mysql_list_fields("$info[db]", "$info[table]");
$columns = mysql_num_fields($fields);
for( $i=0 ; $i<$columns ; $i++ )
{
$field[$i]=mysql_field_name($fields, $i);
if($field[$i]=="nick_name") echo "<th>$field[$i]</th>";
if($field[$i]=="extra_vars") echo "<th>Number</th>";
}
?>
</tr>
<?php
$result = mysql_query("select * from $info[table]");
while( $data = mysql_fetch_assoc($result) )
{
echo"<tr>";
for( $i=0 ; $i<count($field) ; $i++ )
{
if( $field[$i] == "nick_name" ) echo "<td>".$data["$field[$i]"]."</td>";
if( $field[$i] == "extra_vars" )
{
$temp = unserialize($data["$field[$i]"])->확장변수명;
$temp = explode("|@|", $temp);
echo "<td>".$temp[0]."-".$temp[1]."-".$temp[2]."</td>";
}
}
echo"</tr>";
}
?>
</table>
</body>
</html>
위에 송동우님과 여러 검색을 통해 했는데 폰번호 쪽만 --로 나오는 현상이 발생하네요 ..
50번째 줄 $temp = explode("|@|", $temp); 에서 문제가 발생한다고 나오는데 해결 방안 아시는 분계신가요 ..
Warning: explode() expects parameter 2 to be string, array given in /www/call.php on line 50
이러한 형식으로 에러가 납니다..
unserialize 하셔야 합니다