我们怎样才能把str_replace()函数放到一个变量中呢?
How can we put the str_replace () function into a variable?
str_replace("~","af53261f02cbb39d10c6bb0e53d180da5fee7d3c4c784f632e35abcf33b08fdc","$encode");
我们如何将 str_replace() 函数的输出放入变量中?
你可以试试这个:
$variable = str_replace("~","af53261f02cbb39d10c6bb0e53d180da5fee7d3c4c784f632e35abcf33b08fdc", "$encode");
这是你的问题吗?
str_replace("~","af53261f02cbb39d10c6bb0e53d180da5fee7d3c4c784f632e35abcf33b08fdc","$encode");
我们如何将 str_replace() 函数的输出放入变量中?
你可以试试这个:
$variable = str_replace("~","af53261f02cbb39d10c6bb0e53d180da5fee7d3c4c784f632e35abcf33b08fdc", "$encode");
这是你的问题吗?