[Tep-j-general] 自動応答メールのお客様名

Back to archive index

Masahiko Nagata nagat****@ideas*****
2002年 11月 26日 (火) 23:11:54 JST


小嶋さん、こんばんは。
永田です。

「様」等を追加の件ですが、/catalog/includes/functions/general.php 313行目付
近に下記の様に追記します。

////
// Return a formatted address
// TABLES: address_format
  function tep_address_format($address_format_id, $address, $html, $boln,
$eoln) {

    // tamura for CSS 2002/07/30
    while (list($key, $value) = each($address)) {
      $address[$key] = htmlspecialchars($value);
    }

    $address_format_query = tep_db_query("select address_format as format
from " . TABLE_ADDRESS_FORMAT . " where address_format_id = '" .
$address_format_id . "'");
    $address_format = tep_db_fetch_array($address_format_query);

    $firstname = addslashes($address['firstname']);
    $lastname = addslashes($address['lastname']);
    $street = addslashes($address['street_address']);
    $suburb = addslashes($address['suburb']);
    $city = addslashes($address['city']);
    $state = addslashes($address['state']);
    $country_id = $address['country_id'];
    $zone_id = $address['zone_id'];
    $postcode = addslashes($address['postcode']);
    $zip = $postcode;
    $country = tep_get_country_name($country_id);
    $state = tep_get_zone_code($country_id, $zone_id, $state);

    $before = ' 様';
    $BEFORE = ' 様';
    $YUBINMARK = '〒';
    $yubinmark = '〒';

    if ($html) {
// HTML Mode


on 2002.11.26 17:49, Orange-Net at staff****@orang***** wrote:
>> あとは、テーブル address_format を開き、address_format_id = 6 のレコードを編
>> 集して

こちらは、MySQLのテーブルの事を指しています。

(恐らく...)catalog等の名称で作成しているMySQLのデータベース内に
address_format テーブルがあります。
その中にaddress_format_idフィールドがあり、そこに格納されている
「address_format_id」が「6」となっている部分が日本語用の表示順となっています
ので、「address_format」の内容を書き換えて下さい。




Tep-j-general メーリングリストの案内
Back to archive index