The StringBuilder class implementation method of PHP simulation asp.net _php skill

Source: Internet
Author: User

The StringBuilder class implementation method of PHP simulation asp.net is described in this paper. Share to everyone for your reference. as follows:

In the asp.net development environment, there is a StringBuilder class is more commonly used, this class can be used to achieve a very convenient text text operation. But in PHP, there is no such class. However, we can simulate this method by customizing the class.

/******************************************** 
 * * 
 function Name: StringBuilder 
 * Action: Constructs the StringBuilder class under the PHP 
 * 
 ********************************************/
class StringBuilder 
{ 
  const line= "<br/>"; 
  Protected $list = Array ('); 
  Public function __construct ($str =null) 
  { 
    Array_push ($this->list, $str); 
  Public Function Append ($str) 
  { 
    Array_push ($this->list, $str); 
    return $this; 
  } 
  Public Function Appendline ($str) 
  { 
    Array_push ($this->list, $str. self::line); 
    return $this; 
  } 
  Public Function AppendFormat ($str, mixed $args) 
  { 
    Array_push ($this->list, sprintf ($str, $args)); 
    return $this; 
  } 
  Public Function ToString () 
  {return 
    implode ("", $this->list); 
  } 
  Public Function __destruct () 
  { 
    unset ($this->list); 
  } 


I hope this article will help you with your PHP program design.

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.