One file in PHP calls the steps of another file class, and then the output appears garbled, solving

Source: Internet
Author: User
One file in PHP calls another file class method, and then the output appears garbled, solve!
tt.php file

 
  Class CTest
{
Private $m _str;
Public Function SetData ($data)
{
$m _str= $data;
}
Public Function GetData ()
{
return $m _str;
}
}

?>



File test.php
 
  
"; Normal display
Require_once './tt.php ';
$p =new ctest ();
$p->setdata ("Could you get this data?");
$str = $p->getdata ();
Echo $str; does not display properly
?>


------
Display test.php execution results in the browser
Begin Test
Nobelium


Share to: more


------Solution--------------------
Class CTest
{
Private $m _str;
Public Function SetData ($data)
{
$this->m_str= $data;
}
Public Function GetData ()
{
return $this->m_str;
}
}

------Solution--------------------
Please check that the encoding of the $data is consistent with the page encoding.
------Solution--------------------
Set the encoding of the page
  • 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.