outlook_csv_-_fran

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

TXT
38
字号
<?php// This file defines a set of functions and an associative array.// The key of the array corresponds to a header in the source// export 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.	class export_conv	{		var $currentrecord = array(); //used for buffering to allow uid lines to go first		var $id;		var $type = 'csv';		var $export = array(			'title'               => 'Fonction',			'n_given'             => 'Pr閚om',			'n_middle'            => 'Deuxi鑝e pr閚om',			'n_family'            => 'Nom',			'n_suffix'            => 'Suffixe',			'org_name'            => 'Soci閠

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?