PHP traversal array Output As string example

Source: Internet
Author: User
Tags foreach

Example

?
foreach ($res [' matches '] as $value) {
$arr [] = $value [' id '];//to turn the traversal array into a new array
}
$str = Implode (', ', $arr);//combine array elements into a single string
Echo $str;
?>

Analysis Example foreach

The foreach function is the traversal

foreach ($array as $key => $value)
{
......
}

Traverses the given array_expression array. In each loop, the value of the current cell is assigned to the $value and the pointer inside the array moves forward one step (so the next cell will be given in the next loop)


The implode function is to combine the array into a string by a specified character

The implode () function combines array elements into a single string.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.