묻고답하기
회원정보중 연락처를 엑셀로 가져오는데 Array로 나옵니다. 도와주세요. ㅜㅜ
2015.10.13 23:43
PHP로 된 회원정보를 다운받을 수 있는 파일을 사용하여 회원정보를 다운받고 있는데,
연락처 중 Array--로 나오는 경우가 있습니다. 물론 연락처는 확장변수에서 추출하는 거구요...
PHP 내용은 아래와 같은데... 이곳에서 아무리 검색해도 뚜렸한 해법이 없네요...
도움 부탁드립니다. ㅜㅜ
---------------------------------------------------------------------------------------------------------------------------------------------
<?php
$info = array(
"host" => "****",
"user" => "****",
"pass" => "****",
"db" => "****",
"table" => "****"
);
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=member.xls");
$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 align=center>
<?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]=="extra_vars")
{
$field[$i] = "tel";
echo "<th>".$field[$i]."</th>";
$field[$i] = "extra_vars";
}
else echo "<th>".$field[$i]."</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] == "extra_vars" )
{
$temp = unserialize($data["$field[$i]"])->phone;
$temp = explode("|@|", $temp);
echo "<td>".$temp[0]."-".$temp[1]."-".$temp[2]."</td>";
}
else echo "<td>".$data["$field[$i]"]."</td>";
}
echo"</tr>";
}
?>
</table>
</body>
</html>
---------------------------------------------------------------------------------------------------------------------------------------------
코어버전은 1.8.1.1입니다.
소스는 확인 안해봤습니다
print_r로 어레이의 값을 확인해보세요