[PHP-users 24026] Re: 表\ の処理

Satto satoru_kumagai @ mjs.co.jp
2004年 12月 29日 (水) 10:42:32 JST


自己レスです.
自己解決?かも??
以下のようにソースを修正して見ましたが,
「表」,「\」,「表\」,全て正常に出力されました.

<?php
require_once('dbconnect.inc');
$con = new connect;
$str = "select * from hoge where hoge_id=1";
$rs = $con->rtn_rs($str);
$row = mssql_fetch_array($rs);
$title = $row["title"];
$title = htmlspecialchars($title,ENT_QUOTES);
mb_regex_encoding("SJIS");     //追加
$title = mb_ereg_replace("\\\\","\\\\",$title);  //修正
?>
引っかかりそうな文字でいろいろ実験して見ます.


PHP-users メーリングリストの案内