1

我有以下代码完全可以正常工作:

<?php
$text = "text"; $text_ok = urlencode($text);
if(!@file_get_contents("http://site.com/t=".$text_ok))
{
    echo "Error.";
}
else
{
    $data = file_get_contents("http://site.com/t=".$text_ok);
    $file = "texts/".md5($text).".txt";
    if(!file_exists($file)) {
        file_put_contents($file, $data);
    }
?>
Lorem <?php echo $file; ?>"> ipsum
<?php
}
?>

问题是http://site.com/t=$text_ok只有在$text少于 25 个字符时才有效。我想知道当$text超过 25 个字符时是否可以拆分为多个部分并创建诸如 等文件texts/md5($text)/1.txttexts/md5($text)/2.txt希望您能理解。任何帮助表示赞赏。谢谢!

4

1 回答 1

1

尝试这个:

<?php
$text = "text";
$split = str_split($text, 25);
$count = 1;
foreach ($split as $s) {
    $text_ok = urlencode($s);
    if (!@file_get_contents("http://site.com/t=" . $text_ok)) {
        echo "Error.";
    } else {
        $data = file_get_contents("http://site.com/t=" . $text_ok);
        $file = "texts/" . md5($text) . "/" . $count . ".txt";
        if (!file_exists($file)) {
            file_put_contents($file, $data);
        }
        ?>
        Lorem <?php echo $file; ?>"> ipsum
        <?php
    }
    $count++;
}
?>
于 2013-09-13T13:23:15.193 回答