Changeset 7180 for temp/trunk/data/class
- Timestamp:
- 2006/11/01 12:10:07 (20 years ago)
- Location:
- temp/trunk/data/class
- Files:
-
- 2 edited
-
GC_SendMail.php (modified) (1 diff)
-
SC_Pdf.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
temp/trunk/data/class/GC_SendMail.php
r7179 r7180 64 64 $this->to = $to; 65 65 $this->subject = Mb_encode_mimeheader($subject); 66 $this->body = mb_convert_encoding( $body, "iso-2022-jp", "CHAR_CODE");66 $this->body = mb_convert_encoding( $body, "iso-2022-jp", CHAR_CODE); 67 67 $this->header = "Mime-Version: 1.0\n"; 68 68 $this->header .= "Content-Type: text/html; charset=iso-2022-jp\n"; -
temp/trunk/data/class/SC_Pdf.php
r7179 r7180 28 28 function SC_Pdf($width = 595, $height = 842, $fontsize = 10) { 29 29 $this->license_key = "B600602-010400-714251-5851C1"; 30 $this->src_code = "CHAR_CODE";30 $this->src_code = CHAR_CODE; 31 31 // UTF-8¤Ç¤Ê¤¤¤È¥Ö¥í¥Ã¥¯Æâ¤Ç²þ¹Ô¤Ç¤¤Ê¤¤¡£ 32 32 $this->dst_code = "UTF-8"; … … 410 410 $end_y = 0; 411 411 } 412 $enc_table = mb_convert_encoding($line, "utf-8", "CHAR_CODE");412 $enc_table = mb_convert_encoding($line, "utf-8", CHAR_CODE); 413 413 414 414 $tf = PDF_create_textflow($this->pdf, $enc_table, $option);
Note: See TracChangeset
for help on using the changeset viewer.
