在用golang做aravel进程管理的时候,发现一个”坑”:
strconv.Itoa(fid)才能到达想要的数字字符;
string(fid)并不能!(因为该转换会将数字直接转换为该数字对应的内码)
fidstr := strconv.Itoa(fid)
fidstr := string(fid)
fmt.Printf("exec: %s %s %s %s\n",php, artisan, option, fidstr)
cmd := exec.Command(br.php, br.artisan, br.option, fidstr)
当且仅当data为[]byte类型时string(data)才能达到想要的目标。其他情况,则需要根据类型来转换。
比如:strconv.Itoa(int),否则得到的不是我们想要的。
测试两种方式的ASCII值
func Test_IntToString(t *testing.T) {
fmt.Printf("string(1) = %v\n", []byte(string(1)))
fmt.Printf("strconv.Itoa(1) = %v\n", []byte(strconv.Itoa(1)))
}
我们得到运行如下结果:
string(1) = [1]
strconv.Itoa(1) = [49]
结论已经很明显了,string(int)会将整数直接翻译为ASCII编码,而strconv.Itao(int)才会转换成对应的数字字符在ASACII编码。