本文整理汇总了PHP中Localization::getExportCharset方法的典型用法代码示例。如果您正苦于以下问题:PHP Localization::getExportCharset方法的具体用法?PHP Localization::getExportCharset怎么用?PHP Localization::getExportCharset使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Localization
的用法示例。
在下文中一共展示了Localization::getExportCharset方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: parse_import_act
function parse_import_act($file_name, $delimiter, $max_lines, $has_header)
{
global $locale;
if (empty($locale)) {
require_once 'include/Localization/Localization.php';
$locale = new Localization();
}
$line_count = 0;
$field_count = 0;
$rows = array();
if (!file_exists($file_name)) {
return -1;
}
$fh = fopen($file_name, "r");
if (!$fh) {
return -1;
}
while (($line = fgets($fh, 4096)) && ($max_lines == -1 || $line_count < $max_lines)) {
$line = trim($line);
$line = substr_replace($line, "", 0, 1);
$line = substr_replace($line, "", -1);
$fields = explode("\",\"", $line);
$this_field_count = count($fields);
if ($this_field_count > $field_count) {
$field_count = $this_field_count;
}
array_push($rows, $fields);
$line_count++;
}
// got no rows
if (count($rows) == 0) {
return -3;
} else {
//// cn: bug 6712 - need to translate to UTF-8
foreach ($rows as $rowKey => $row) {
foreach ($row as $k => $v) {
$row[$k] = $locale->translateCharset($v, $locale->getExportCharset());
}
$rows[$rowKey] = $row;
}
}
$ret_array = array("rows" => &$rows, "field_count" => $field_count);
return $ret_array;
}