我有这段代码,它会在我的服务器上创建result.png:
.12
现在我有imagepng($image, "'./result/result.png");
,$text
,$type
如何使用结果_ $id
_ $text
_ $id
创建文件?
示例:$type
;
./result/result_123_131_1.png
答案 0 :(得分:1)
非常简单:
$name = "./result/result_$text_$id_$type";
//do whatever you do to save the image and use $name as name of the file.
在php中,只要有想要在某些字符串文字中使用的变量,就会使用双引号。我上面做的是将变量的值插入到字符串文字"./result/result___"
中。
更多信息here。
答案 1 :(得分:0)
$image = imagepng($image, "'./result/result");
$file = $image . "_" . $text . "_" . $id . "_" . $type ."png";