Nasıl bir diziye bir PHP formdaki verileri eklerim?

6 Cevap php

Benim formda benim bir veri isterse bir döngü varsa:

for ($i=0;$i < count($_POST['checkbx']);$i++)
    {
    // calculate the file from the checkbx
    $filename = $_POST['checkbx'][$i];
    $clearfilename = substr($filename, strrpos ($filename, "/") + 1);

     echo "'".$filename."',";       

    }

nasıl eklerim, aşağıda örnek diziye?:

$files = array( 'files.extension', 'files.extension', );

6 Cevap

Hatta küçük:

$files = array();
foreach($_POST['checkbx'] as $file)
{
    $files[] = basename($file);
}

Eğer $_POST['checkbx'] var ve bir dizi olduğundan kesinlikle emin değilseniz prolly yapmanız gerekir:

$files = array();
if (is_array(@$_POST['checkbx']))
{
    foreach($_POST['checkbx'] as $file)
    {
        $files[] = basename($file);
    }
}

Ayrıca "[]" sonra kendi isimleri ile HTML bu onay kutularını isim gerektiğini unutmayın. örneğin:

<input type="checkbox" name="checkbx[]"  ...etc... >

Daha sonra bu suretle onlara erişmek mümkün olacak:

<?php

// This will loop through all the checkbox values
for ($i = 0; $i < count($_POST['checkbx']); $i++) {
   // Do something here with $_POST['checkbx'][$i]
}

?>
$files[] =$filename;

VEYA

array_push($files, $filename);

Sen array_push işlevini kullanabilirsiniz:

<?php
$stack = array("orange", "banana");
array_push($stack, "apple", "raspberry");
print_r($stack);
?>

Verecektir:

Array
(
    [0] => orange
    [1] => banana
    [2] => apple
    [3] => raspberry
)

Basitçe her dosya için array_push kullanarak dizi doldurmak.

Muhtemelen bu gibi:

for ($i=0;$i < count($_POST['checkbx']);$i++) {
// calculate the file from the checkbx
$filename = $_POST['checkbx'][$i];
$clearfilename = substr($filename, strrpos ($filename, "/") + 1);

$files[] = $filename; // of $clearfilename if that's what you wanting the in the array  
}

Bunu diziye eklemek istediğiniz ne tamamen emin değilim, ama burada php kullanarak bir diziye veri 'itme' genel yöntem:

<?php
$array[] = $var;
?>

Örneğin Yapabileceğin:

for ($i=0;$i < count($_POST['checkbx']);$i++)
{
   // calculate the file from the checkbx
   $filename = $_POST['checkbx'][$i];
   $clearfilename = substr($filename, strrpos ($filename, "/") + 1);

   echo "'".$filename."',";       
   $files[] = $filename;
}