We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
//$val = preg_replace("/[([^[]])]/eis", "'.'.str_replace('$','$','\1')", $val); 替换为 $val = preg_replace_callback("/[([^[]])]/is", function ($matches) { return '.'.str_replace('$','$',$matches[1]);}, $val);
将不能支持 $lang.os.[$order.order_status] 这种形式的变量,导致很多地方无法显示出内容
The text was updated successfully, but these errors were encountered:
改成$lang.os.$order.order_status就好了
Sorry, something went wrong.
No branches or pull requests
//$val = preg_replace("/[([^[]])]/eis", "'.'.str_replace('$','$','\1')", $val);
替换为
$val = preg_replace_callback("/[([^[]])]/is", function ($matches) { return '.'.str_replace('$','$',$matches[1]);}, $val);
将不能支持
$lang.os.[$order.order_status]
这种形式的变量,导致很多地方无法显示出内容
The text was updated successfully, but these errors were encountered: