PHP array-to-string and PHP string-to-array correlation method parsing _php Tutorial

Source: Internet
Author: User
Tags array to string
We're going to introduce you today. PHP Array to string implode ()

 
  
  
  1. Php
  2. $vegetables [0] = "corn";
  3. $vegetables [1] = "broccoli";
  4. $vegetables [2] = "zucchini";
  5. $ text implode(",", $vegetables);
  6. Echo $text;
  7. ?>

Run results

Corn,broccoli,zucchini

2 PHP string to array explode ()

 
  
  
  1. Php
  2. $ text "corn, broccoli, zucchini";
  3. $ Vegetables explode(",", $text);
  4. Print_r ($vegetables);
  5. ?>

Operation Result:

 
  
  
  1. Array
  2. (
  3. [0] => corn
  4. [1] => broccoli
  5. [2] => zucchini

The above two pieces of code are what we introduce to you about PHP array to string and PHP string to the array of related code.


http://www.bkjia.com/PHPjc/446366.html www.bkjia.com true http://www.bkjia.com/PHPjc/446366.html techarticle today we introduce you to PHP array to string implode ()? PHP $vegetables [0]= "corn"; $vegetables [1]= "Broccoli"; $vegetables [2]= "zucchini"; $ text = implode (",", $vegetables) ...

  • 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.