CSV 新行字符

2023-12-08

我有一个 Excel 模板,用于填写数据并将其导出到 CSV 以填充我网站上的以下页面。

http://play.mink7.com/ifocus_v4/careers.php

当我在 Windows 中导出文件时,我得到了正确的新行字符的格式。但是当我从 MAC 导出相同的 Excel 文件时,我没有得到新行字符。

Windows File
play.mink7.com/ifocus/win.csv

and

MAc File
play.mink7.com/ifocus/mac.csv

.

My Code

<?php 

include_once("libs/csv2json/CSVParser.php");

$jsonParser = CSVParserFactory::Create("json");
$path = "uploads/jobs.csv";

//This property will use the first row to convert the results into a
//json object array
$jsonParser->IsFirstRowHeader = true;
$jobs = $jsonParser->Parse($path);

$jobs = json_decode($jobs, true);

?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>iFocus - Careers</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,400,700,300' rel='stylesheet' type='text/css'>
<script src="js/modernizr.custom.34639.js"></script>
<script src="js/jquery-1.9.1.min.js"></script>
<script src="js/jquery.accordion.min.js"></script>
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/styles.css">
</head>

<body>
<div id="header" class="wrapper">
  <header class="container">
    <div id="logo"><a href="index.php"><img src="img/logo.png" width="185" height="69" alt="ifocus logo"></a></div>
    <nav id="primaryNav">
      <ul>
        <li><a href="index.php">Home</a></li>
        <li><a href="about_us.php">About Us</a></li>
        <li><a href="case_studies.php">Case Studies</a></li>
        <li><a href="services.php">Services</a></li>
        <li><a href="testimonials.php">Testimonials</a></li>
        <li><a class="active" href="careers.php">Careers</a></li>
        <li><a href="contact_us.php">Contact Us</a></li>
      </ul>
    </nav>
    <div class="clearfix"></div>
  </header>
</div>
<div id="mainBody">
  <div class="container">
    <h3>Careers</h3>
    <h4>iFocus is looking for experienced professionals in the following areas: </h4>
    <p>Email your resume to [email protected]</p>
    <div class="active-jobs">

    <?php $i = 1; ?>
    <?php foreach($jobs as $j): ?>
      <h3 class="accordion" id="nav-section<?php echo $i++; ?>"><?php echo $j['job_code']." - ".$j['title']; ?><span></span> </h3>
      <div class="accordion-content">
        <p><strong>Relevant Experience:</strong> <?php echo $j['experience']; ?></p>

        <p><strong>Job Description::</strong></p>
        <?php $job_desc = explode("\n", $j['job_desc']);?>
        <ul>
          <?php foreach($job_desc as $jd):?>
          <li><?php echo $jd; ?></li>
          <?php endforeach; ?>
        </ul>

        <p><strong>Skill Set:</strong></p>
        <?php $skillsets = explode("\n", $j['skillsets']);?>
        <ul>
          <?php foreach($skillsets as $s):?>
          <li><?php echo $s; ?></li>
          <?php endforeach; ?>
        </ul>

        <p><strong>Key Words:</strong> <?php echo $j['keywords']; ?></p>
      </div>
      <?php endforeach; ?>


    </div>
    <div class="clearfix"></div>
  </div>
</div>
<script type="text/javascript">
        jQuery(document).ready(function($) {
                $('.accordion').accordion({
                        defaultOpen: 'nav-section1',
                        cookieName: 'accordion_nav'
                });
        });

        </script>
</body>
</html>

库链接:https://github.com/crosbymichael/php-csv-to-xml-json

我尝试过使用"\r\n"但它也不给出格式


PHP 文件函数不能可靠地识别 Mac 中的行结尾(如果它们使用\r字符,就像 Mac Excel 那样,如果我没记错的话。)

你需要设置auto_detect_line_endings在 php.ini 中设置为 true,那么它将正确识别行结尾,无论它们是\n, \r, or \r\n.

这个设置是PHP_INI_ALL,这意味着它可以在任何地方设置,即在php.ini中,在.htaccess对于特定目录,甚至与ini_set, e.g., ini_set('auto_detect_line_endings', true)

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

CSV 新行字符 的相关文章