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

  • Home
  • SEARCH
  • 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 275363
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T00:45:13+00:00 2026-05-12T00:45:13+00:00

I don’t understand the => part. foreach ($_POST[‘tasks’] as $task_id => $v) { What

  • 0

I don’t understand the => part.

foreach ($_POST[‘tasks’] as $task_id => $v) {

What does it do in a foreach loop?

  • 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-05-12T00:45:14+00:00Added an answer on May 12, 2026 at 12:45 am

    A foreach loops goes through each item in the array, much like a for loop. In this instance, the $task_id is the key and the $v is the value. For instance:

    $arr = array('foo1' => 'bar1', 'foo2' => 'bar2');
    foreach ($arr as $key => $value)
    {
      echo $key; // Outputs "foo1" the first time around and "foo2" the second.
      echo $value; // Outputs "bar1" the first time around and" bar2" the second.
    }
    

    If no keys are specified, like in the following example, it uses the default index keys like so:

    $arr = array('apple', 'banana', 'grape');
    foreach ($arr as $i => $fruit)
    {
      echo $i; // Echos 0 the first time around, 1 the second, and 2 the third.
      echo $fruit;
    }
    
    // Which is equivalent to:
    for ($i = 0; $i < count($arr); $i++)
    {
      echo $i;
      echo $arr[$i];
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 261k
  • Answers 261k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Try this out: var selectedEventId = 0; var prevRow =… May 13, 2026 at 11:34 am
  • Editorial Team
    Editorial Team added an answer Well I was advised by a colleague to take another… May 13, 2026 at 11:34 am
  • Editorial Team
    Editorial Team added an answer <?xml version="1.0"?> <configdata> <routes> <Home route=":locale/"> <defaults controller="index" action="index" locale="tr_TR"/>… May 13, 2026 at 11:34 am

Related Questions

In order to apply a triggered animation to all ToolTip s in my app,
I've got a string that has curly quotes in it. I'd like to replace
Is it possible to replace javascript w/ HTML if JavaScript is not enabled on
I don't know when to add to a dataset a tableadapter or a query
I don't edit CSS very often, and almost every time I need to go

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.