Using the explode function, use the string to be replaced as the separator, connect the two array elements to the string to be replaced, and then UPDATE the array for the past few days, A small problem occurs during work. one field of the content type is stored in a language, because the data written is imported in Excel, so in order to make the processing simple, 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:
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 = %
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