Php string replacement method

Source: Internet
Author: User

In the past few days, I encountered a small problem in my work. One Field of the content type is stored in a language, because the data is written in Excel and imported, so it is easy to process, many languages are separated by commas (,) to create a string for all languages, which is much simpler to store. However, due to the original data quality problems, some of the "Chinese" are "Mandarin Chinese". Now we need to change all "Mandarin Chinese" to "Chinese ".
This requires replacement of some strings in a string. To solve this problem, we usually use regular expressions for replacement or some replacement methods in PHP. It is very troublesome and time-consuming to do so, so I thought of such a lazy method, using the explode function, using the string to be replaced as the separator, and then connecting the two array elements to the string to be replaced, then UPDATE it. Copy codeThe Code is as follows: <? Php
Function replace (){
$ SQL = db_query ("SELECT field_languages_value, nid FROM {content_type_company_profile} WHERE

Field_cmdages_value like '% Mandarin Chinese % '");
While ($ result = db_fetch_object ($ SQL )){
$ A = explode ("Mandarin Chinese", $ result-> field_languages_used_value );
$ B = $ a []. 'China'. $ a [1];
Db_query ("UPDATE content_type_company_profile SET field_languages_used_value = '% s' WHERE nid = %

D ", $ B, $ result-> nid );
}
}
?>

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.