Php converts an uppercase name to an underline to separate the names

Source: Internet
Author: User
This article mainly introduces how php converts an uppercase name to an underscore (_), and explains some naming methods that are not used to an uppercase style, such as Pascal name and camper name, you can refer to the following code to convert a string in uppercase to _ + in lowercase. this problem occurs when naming variables:

$ Name = 'apppromozhongqiu2014activestatusselector '; echo cc_format ($ name); function cc_format ($ name) {$ temp_array = array (); for ($ I = 0; $ I

 
  
= 65 & $ ascii_code <= 90) {if ($ I = 0) {$ temp_array [] = chr ($ ascii_code + 32 );} else {$ temp_array [] = '_'. chr ($ ascii_code + 32) ;}} else {$ temp_array [] = $ name [$ I] ;}} return implode ('', $ temp_array );}

 

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.