Replace array values by another one in a string

AmineBouhaddi

i try to replace array values by another one in a string, i can't find any PHP function could do this.

this is my code :

array_replace(array('id','quote_id'), array('new field 1','new field 2'), $string)

this is my string

SELECT id,quote_id,total FROM quotes
Nitesh Garg
$ar = array('id','quote_id');
$replace = array('new field 1','new field 2');

$str = 'SELECT id, quote_id,total FROM quotes';

for($i=0;$i<count($ar);$i++) {
    $str = preg_replace("/\b$ar[$i]\b/u", $replace[$i], $str);
}

echo $str;

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

Copy values and keys from one array into another

分類Dev

Is there another way to replace values like zero and one with NaNs?

分類Dev

How to add the values in one array to those in another pair-wise?

分類Dev

How to add the values in one array to those in another pair-wise?

分類Dev

convert a multidimensionnal array into another one but only just with values for highcharts library

分類Dev

Replace a char in a string with another string?

分類Dev

How to efficiently replace characters in an std::string with iterative values from another std::string?

分類Dev

fastest way to replace values in an array with the value in the same position in another array if they match a condition

分類Dev

How to replace string values in one column with actual column values from other columns in the same dataframe?

分類Dev

Insert one string into another

分類Dev

pyspark replace all values in dataframe with another values

分類Dev

Replace double number with another in a string

分類Dev

How can I filter rows if one array contains all values from another array using BigQuery?

分類Dev

Display values from one associative array whose key exists as the value in another array

分類Dev

Javascript - pull values of an element with matching property in one array and save to another array

分類Dev

Array.splice replaces multiple values (though set to replace only one)

分類Dev

MongoDB Replace specific array values

分類Dev

Replace array values inside a document

分類Dev

replace key with new array values

分類Dev

Column to aggregate values in another one

分類Dev

C# replace one TreeView with another

分類Dev

Replace data of an array by two values of a second array

分類Dev

Replace a string numpy array with a number

分類Dev

Replace string keys with array elements

分類Dev

SQL Server replace string based on another table

分類Dev

pandas replace values based on values from another column

分類Dev

How to replace values in differents columns with values in another column? (R)

分類Dev

Sort one array by columns of another array - Python

分類Dev

How to split delimiter array values into another Array

Related 関連記事

  1. 1

    Copy values and keys from one array into another

  2. 2

    Is there another way to replace values like zero and one with NaNs?

  3. 3

    How to add the values in one array to those in another pair-wise?

  4. 4

    How to add the values in one array to those in another pair-wise?

  5. 5

    convert a multidimensionnal array into another one but only just with values for highcharts library

  6. 6

    Replace a char in a string with another string?

  7. 7

    How to efficiently replace characters in an std::string with iterative values from another std::string?

  8. 8

    fastest way to replace values in an array with the value in the same position in another array if they match a condition

  9. 9

    How to replace string values in one column with actual column values from other columns in the same dataframe?

  10. 10

    Insert one string into another

  11. 11

    pyspark replace all values in dataframe with another values

  12. 12

    Replace double number with another in a string

  13. 13

    How can I filter rows if one array contains all values from another array using BigQuery?

  14. 14

    Display values from one associative array whose key exists as the value in another array

  15. 15

    Javascript - pull values of an element with matching property in one array and save to another array

  16. 16

    Array.splice replaces multiple values (though set to replace only one)

  17. 17

    MongoDB Replace specific array values

  18. 18

    Replace array values inside a document

  19. 19

    replace key with new array values

  20. 20

    Column to aggregate values in another one

  21. 21

    C# replace one TreeView with another

  22. 22

    Replace data of an array by two values of a second array

  23. 23

    Replace a string numpy array with a number

  24. 24

    Replace string keys with array elements

  25. 25

    SQL Server replace string based on another table

  26. 26

    pandas replace values based on values from another column

  27. 27

    How to replace values in differents columns with values in another column? (R)

  28. 28

    Sort one array by columns of another array - Python

  29. 29

    How to split delimiter array values into another Array

ホットタグ

アーカイブ