import_from_outlook_-_italiano

来自「eGroupWare is a multi-user, web-based gr」· 代码 · 共 40 行

TXT
40
字号
<?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 + =
减小字号Ctrl + -
显示快捷键?