我是靠谱客的博主 单身哑铃,最近开发中收集的这篇文章主要介绍php foreach创建文件,php – mkdir()在foreach函数中跳过第一个文件,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

标签:php

我有一个脚本,它读取URL-Image-List并将图像保存在基于URL的文件夹中.

这是我的脚本:

// Open the URL and save each line in a array

$file = fopen("http://www.edem.de/php/imglist.ashx","r");

$fileArray = array();

while (($line = fgetss($file)) !== false) {

$fileArray[] = $line;

}

// Sort the array

array_multisort(array_values($fileArray), SORT_NUMERIC , array_keys($fileArray), SORT_NUMERIC , $fileArray);

// Start the iteration for saving each image

foreach ($fileArray as $url) {

// Explode URL for folder and image name

$urlpath = parse_url($url, PHP_URL_PATH);

$dataend = explode("/", $urlpath);

$ending = $dataend[5];

$folder = $dataend[3];

// delete "_" and "whitespace"

$folder = strtr($folder, "_", " ");

$folder = preg_replace('/s+/', '', $folder);

$ending = strtr($ending, "_", " ");

$ending = preg_replace('/s+/', '', $ending);

// Check if folder exist. If yes -> go on with path. If no -> create folder

if (!file_exists("Bilder/$folder/")) {

$imgpath = mkdir("Bilder/$folder/", 0777, true);

//I THINK THE MISTAKE IS HERE

}

else {

$imgpath = ('Bilder/' .$folder. '/');

}

// save the path and the image name in a variable

$savepath = $imgpath . $ending;

// Test echo

echo ("The image $ending is saved in the folder $savepath. The file should be in the folder $folder
");

//Connect and save images

$ch = curl_init($url);

curl_setopt($ch, CURLOPT_HEADER, 0);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

curl_setopt($ch, CURLOPT_BINARYTRANSFER,1);

$rawdata=curl_exec ($ch);

curl_close ($ch);

$fp = fopen(''.$savepath.'','w');

fwrite($fp, $rawdata);

fclose($fp);

}

每个文件夹应包含一些图像.

但是:当必须创建文件夹时,他会创建此文件夹,但将第一个图像保存在根目录中,而不是保存在此文件夹中.

示例回声

该文件夹已创建,但第一个图像未保存在此新文件夹中.

以下图像也属于此文件夹,可以正确保存.

我没有错.

解决方法:

在第一种情况下,您将其存储为true或false.更改以下内容:

// Check if folder exist. If yes -> go on with path. If no -> create folder

if (!file_exists("Bilder/$folder/")) {

$imgpath = mkdir("Bilder/$folder/", 0777, true);

//I THINK THE MISTAKE IS HERE

}

else {

$imgpath = ('Bilder/' .$folder. '/');

}

至:

// Check if folder exist. If yes -> go on with path. If no -> create folder

if (!file_exists("Bilder/$folder/")) {

mkdir("Bilder/$folder/", 0777, true);

}

$imgpath = ('Bilder/' .$folder. '/');

标签:php

来源: https://codeday.me/bug/20190528/1169923.html

最后

以上就是单身哑铃为你收集整理的php foreach创建文件,php – mkdir()在foreach函数中跳过第一个文件的全部内容,希望文章能够帮你解决php foreach创建文件,php – mkdir()在foreach函数中跳过第一个文件所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部