Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8845745
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T11:48:26+00:00 2026-06-14T11:48:26+00:00

i have a doubt about if i can pass an array that content the

  • 0

i have a doubt about if i can pass an array that content the link of the files to a curl loop to create a single loops and not everytime i need to upload a file content, copy and paste the same curl call with the different file name.

Here are the code i wrote to upload into the server a single file. I copy and paste the same code for every single file and in that way everything works, but i want to understand how to create a single loop giving to the “$data = array(‘file’=>$fn);” the loop with all the file content and automate all the calls in one function when call the function “file_get_contents($fn)”.

//file to upload

$fn = ("fn.rdf");

//curl loop to upload single file
    $data = array('file'=>$fn);
    $ch = curl_init(); 
    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/rdf+xml'));
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_URL, 'http://www.example.com/index.php?update=true');
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, file_get_contents($fn));  
    curl_exec($ch);
    $info = curl_getinfo($ch); var_dump($info);
    $result = curl_exec($ch); 
     if ($result === false) {
       die(curl_error());
     }else{
       echo "<br>"."upload ok"."<br>";
     }

thanks!

EDIT: Hi, once again i have a doubt. If i want to use that script as a function to call its method into an another script that read one by one the articles, here i have to put the function updateContent(){} to call into the other script the method updateContent()?
As i already said, $fn contain an array with the list of the file. If i want to call the updateContent() created but only for a specific file1.rdf is correct to use that command updateContent($files['0']); to call the method specified only for the element 0 (correspond to file1.rdf of the array mentioned) to update it status?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T11:48:27+00:00Added an answer on June 14, 2026 at 11:48 am

    You mean something like that?

    $files = array('1.rdf', '2.rdf', '3.rdf', 'x.rdf', 'whatever.xyz');
    
    $ch = curl_init(); 
    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/rdf+xml'));
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_URL, 'http://www.example.com/index.php?update=true');
    curl_setopt($ch, CURLOPT_POST, true);
    
    foreach ($files as $fn) {
        curl_setopt($ch, CURLOPT_POSTFIELDS, file_get_contents($fn));  
        $result = curl_exec($ch);
        $info = curl_getinfo($ch); 
        var_dump($info);
        if ($result === false) {
           die(curl_error());
        }else{
           echo "<br />".$fn." upload ok"."<br />";
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a little doubt about javascript, a new language that I'm studying... I
i have doubt about how can i iterate into a group of div, my
i have some doubt about PHP based web crawlers,can it run like the java
i have a big doubt about memory leak and screen rotation. I know that
I have a doubt about how I can check an URL like this: http://your.url/set_new_password.php?userid=564979&code=54c4a2767c2f485185ab72cdcf03ab59
I have a doubt about Model behavior in Spring MVC. I have a controller
I have a doubt about orkut's new URL Writing method. Earlier the home page
I have little doubt about string reading in C. string reading functions like gets,
I am beginner so have some doubt about Adobe AIR. How do I install
I have a small architecture doubt about organizing code in separate functional units (most

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.