?? import_from_outlook_-_italiano
字號:
<?php// This file defines a set of functions and an associative array.// The key of the array corresponds to a header in the source// import file and the value of the array item will be used in// the creation of the output file.//// An exported Outlook file looks like this://// Title<tab>First Name<tab>Middle Name<tab>Last Name<tab>...// <tab>Patrick<tab><tab>Walsh<tab>...//// Where the first line explains each optional field. This is what// will be looked up in the key.//// The array need not be in any order and any fields not defined will// not be transferred. If the val='+', the value will be appended to// the previous field and any text after the '+' will be appended// before the value. For example, the following would add a comma and// a space between LastName and FirstName and store it in FullName://// array('LastName' => 'FullName','FirstName' => '+, ');//// Also start with a '#' symbol and a comma separated list will be// turned into a number of the same entries. /* $Id: Import_from_Outlook_-_Italiano,v 1.4 2004/04/27 02:57:04 milosch Exp $ */ class import_conv { var $currentrecord = array(); //used for buffering to allow uid lines to go first var $id; var $type = 'csv'; var $import = array( 'Titolo' => 'n_prefix', 'Nome' => 'n_given', 'Secondo nome' => 'n_middle', 'Cognome' => 'n_family', 'Titolo straniero' => 'n_suffix', 'Societ
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -