i = imread ('AB1.png');
b = im2double (x);
d = dct2 (b, [64 64]);
以上代码给出了Echelon B3的弃用警告,我认为在我们的主机提供商升级到PHP 5.5.29之后
答案 0 :(得分:0)
在这种特定情况下,只需删除/e
它在此处不执行任何操作
您也可以删除/i
所以你的代码变成了:
function removeColorCode($text) {
return preg_replace('/\^[0-9]/', '', $text);
}