陣列轉字串(屬性加單引號,逗號分隔)

2022-03-12 19:59:39 字數 565 閱讀 1906

陣列轉字串

php應用場景:sql寫操作應用插入表字段值;

陣列 $data

$data  =  array('張三','男','20',''安徽省合肥市 ');

轉換如下:

#join

$str = " ' " . join("','", array_values($data) ) . " ' ";

#str_replace

$str = " ' ".str_replace( ",","','", implode(',',$data));

#array_map 函式式實現

$str = join( ', ',array_map(function

( $v )

,$data) );

結果:'張三','男','20',''安徽省合肥市 ' ; 實現sql如下

$insertsql = "  insert into user values() ";

python中字典轉字串單引號變雙引號

兩種方法 str 以及json.dumps 注意 單引號雙引號的區別 str方法將其變為單引號,json.dumps方法仍是雙引號!import json d print type d str d str d print str d str d print str d的型別 type str d j...

python字串引號和轉義 單引號字串和轉義符

1 單引號字串和轉義符 字串和數字一樣都是值,可以直接使用,在python控制台中直接輸入字串,如 hello world 會按原樣輸出該字串,只不過用單引號擴了起來 hello world hello world 那麼用雙引號和單引號括起來的字串有什麼區別呢?其實沒有任何區別,只不過在輸出單引號或...

陣列轉字串使用逗號分隔

listdocentrys string.join docentrys public static string join string separator,ienumerablevalues public static string join string separator,ienumerabl...