Questions about the PHP class

Source: Internet
Author: User
Problems with the PHP class
Call source
PHP Code
  
   $obj _car = new Class_car; $num _carid = $obj _car->fn_caradd ($_post);



Class source
PHP Code
  
   Class Class_car {    function fn_caradd ($arr _post) {        print_r ($arr _post);}    }


This will output the array normally
PHP Code
  
   Array (    [action_post] = Caradd    [Str_postchk] =     [Str_carname] = Golf    [Num_carbrand] = 7    [Num_carmodel] = 615    [Str_caremiss] + 1.4T    [Str_cartrans] = MT)



Class source
PHP Code
  
   Class Class_car {    function fn_caradd ($arr _post) {        print_r ($arr _post["Str_carname"]);}    }


This output garbled, solve, the file itself code is no problem

------Solution--------------------
The header sends the encoding.
Add the program to the beginning of the line.

Header (' content-type:text/html; Charset=utf-8 ');
  • Related Article

    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.