0

下面的代码完美无缺,除了它只会发布第一个包含main_. 我需要它来获取包含“main_”字样的任何列值,从而使我能够发布多个图像。因此,如果我有 3 个或更多main_img_url,循环应该知道这一点并相应地添加它们。我在下面注意到图像的位置处理程序开始和结束。

这是一个示例 CSV:

post_title, post_content, main_img_url, main_img_url

这是我的代码:

function app_csv_to_array($file = '', $delimiter = ',') {
    if(!file_exists($file) || !is_readable($file))
        return false;
    $header = NULL;
    $data = array();
    if(false !== $handle = fopen($file, 'r')) {
        while(false !== $row = fgetcsv($handle, 1000, $delimiter)) {

            if($header)
                $data[] = array_combine($header, $row);
            else
                $header = $row;
        }
        fclose($handle);
    }
    return $data;
}


    function process($file) {
        $rows = $this->app_csv_to_array($file);
        foreach($rows as $row) {
            $post['post_title'] = sanitize_text_field($row['post_title']);
            $post['post_content'] = sanitize_text_field($row['post_content']);
            $post['post_status'] = 'publish';
            $post['post_author'] = 658;

        $post_id = wp_insert_post($post);
        //////////////// I want the loop to start here   //////////////////
            foreach($row as $key => $val) {
              if(strstr($key, 'main_')) {
                $tmp = download_url( $file );
                preg_match('/[^\?]+\.(jpg|JPG|jpe|JPE|jpeg|JPEG|gif|GIF|png|PNG)/', $file, $matches);
                $filename = strtolower(basename($matches[0]));
                  } 
            }
//////////////// ends here   //////////////////
        }
    }
4

1 回答 1

1

您的问题在app_csv_to_array方法内部,特别是在array_combine.

根据文档 array_combine,将从两个输入数组创建一个关联数组,其中第一个数组的值作为其键,第二个数组的值作为其值

由于您的密钥是csv文件的标题:

post_title, post_content, main_img_url, main_img_url

最终将返回的结果数组将只有一个插槽 main_img_url作为其键。

规避此问题的方法是确保 csv 文件中的标题是唯一的,同时允许strstr($key, 'main_')匹配您的列内容。就像是:

post_title, post_content, main_img_url1, main_img_url2
于 2012-08-01T12:20:14.217 回答