PHP string manipulation

Source: Internet
Author: User
$getstr = "id=189,pc=0,pt=0,valide=1\r\nid=176,pc=0,pt=0,valide=1\r\nid=177,pc=0,pt=0,valide=1\r\n";



I want to divide the string in the form of \ r \ n, get an array, and then use the form of a key-value pair to take the value,
For example, take the value of the first ID
$getid = $arr ["id"]

Ask Daniel for guidance


Reply to discussion (solution)

A 21-point replacement \ r \ n, then restore the array ... The other ... You watch.

A 21-point replacement \ r \ n, then restore the array ... The other ... You watch.


Can you post code? Brother Daniel.

Explode ("\ r \ n",)
Explode (",",)

$getstr = "id=189,pc=0,pt=0,valide=1\r\nid=176,pc=0,pt=0,valide=1\r\nid=177,pc=0,pt=0,valide=1\r\n"; foreach ( Explode ("\ r \ n", $getstr) as $row) {  if ($row) {    parse_str (STRTR ($row, ', ', ' & '), $t);    $res [] = $t;  }} echo $res [0][' id '];
  • 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.