Php CSV导入正在取代<;及>;与_

Php CSV导入正在取代<;及>;与_,php,fgetcsv,Php,Fgetcsv,我将以下代码作为cron作业的一部分 if (file_exists(DIR_FS_CATALOG . '/orderwise_imports/Zencart_Product_HTML_Info.csv')) { $fileName = DIR_FS_CATALOG . '/orderwise_imports/Zencart_Product_HTML_Info.csv'; $file = fopen($fileName, "r"); fgetcsv($file, 0, ";", '|'); //

我将以下代码作为cron作业的一部分

if (file_exists(DIR_FS_CATALOG . '/orderwise_imports/Zencart_Product_HTML_Info.csv')) {
$fileName = DIR_FS_CATALOG . '/orderwise_imports/Zencart_Product_HTML_Info.csv';
$file = fopen($fileName, "r");
fgetcsv($file, 0, ";", '|'); // read the first line and do nothing with it as we don't need to write the cell names to the database
while ( ($column = fgetcsv ( $file, 0, ';', '|' )) !== FALSE ) {
    $column = array_map(function ($string) {
        $string2 = zen_db_prepare_input($string);
        return str_replace("'", "\'", $string2);
    }, $column);
其中一个csv条目的示例如下

|2312|;|2312|;|EP-9SS-B-001|;|<p><strong>NINE bars deliver 9 great vitamin and mineral benefits for physical and mental energy in an easy to consume format, perfect for people on the go.</strong></p><p>Start your day the right way&hellip; this perfectly balanced NINE offers a healthy helping of satisfying oats and a tangy-sweet Berry flavour with the added staple of nutritious sunflower, pumpkin, sesame and hemp seeds for the perfect combination of Good Seeds and Great Tastes.</p><p><strong>USP:&nbsp; </strong>Made with natural seeds such as sunflower, pumpkin, sesame and chia.</p><p><strong>WOW FACT! </strong>Naturally vegan friendly range and poweredwith 100% plant protein.</p><p><strong>Lifestyle &amp; Dietary trends: </strong>Vegan; Source of Protein; Gluten Free.</p>|;|1459|
我看到了

Array ( [0] => 2312 [1] => 2312 [2] => EP-9SS-B-001 [3] => _p__strong_NINE bars deliver 9 great vitamin and mineral benefits for physical and mental energy in an easy to consume format, perfect for people on the go._/strong__/p__p_Start your day the right way… this perfectly balanced NINE offers a healthy helping of satisfying oats and a tangy-sweet Berry flavour with the added staple of nutritious sunflower, pumpkin, sesame and hemp seeds for the perfect combination of Good Seeds and Great Tastes._/p__p__strong_USP:  _/strong_Made with natural seeds such as sunflower, pumpkin, sesame and chia._/p__p__strong_WOW FACT! _/strong_Naturally vegan friendly range and poweredwith 100% plant protein._/p__p__strong_Lifestyle & Dietary trends: _/strong_Vegan; Source of Protein; Gluten Free._/p_ [4] => 1459 ) 

我一辈子都搞不明白为什么会发生这种事。以前有人遇到过这个问题,您是如何解决的?

zen\u db\u prepare\u input会进行转换。 选中此项:
第865行和第105行

zen_db_prepare_input
似乎是我唯一可能进行翻译的地方。我同意斯库齐的观点,但当我在Zend中查找该方法时,它不会对HTML进行任何剥离——当你在数组映射之前打印列时,你有<>吗?@blupointmedia是的,是的。@blupointmedia我下载了一个版本
1.5.6c
,其中
包括/functions/functions\u general.php
还定义了一个
zen\u db\u prepare\u input
函数,它调用
zen\u sanitize\u string
函数,它的功能是
preg\u replace(/[]/“,'\u',$string)
Scuzzy,是的,我刚才看到了。你能为Stephen3071和其他任何可能遇到这个问题的人发布链接和行号吗?确实如此。然而,admin中的相同功能并没有进行消毒。我修改了cron控制的文件,以便它调用基于管理的函数,而不是存储端函数。
Array ( [0] => 2312 [1] => 2312 [2] => EP-9SS-B-001 [3] => _p__strong_NINE bars deliver 9 great vitamin and mineral benefits for physical and mental energy in an easy to consume format, perfect for people on the go._/strong__/p__p_Start your day the right way… this perfectly balanced NINE offers a healthy helping of satisfying oats and a tangy-sweet Berry flavour with the added staple of nutritious sunflower, pumpkin, sesame and hemp seeds for the perfect combination of Good Seeds and Great Tastes._/p__p__strong_USP:  _/strong_Made with natural seeds such as sunflower, pumpkin, sesame and chia._/p__p__strong_WOW FACT! _/strong_Naturally vegan friendly range and poweredwith 100% plant protein._/p__p__strong_Lifestyle & Dietary trends: _/strong_Vegan; Source of Protein; Gluten Free._/p_ [4] => 1459 )