微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

PHP – 字符串替换SyntaxError:非法字符

$status的输出

Array
(
    [1] => 1
    [2] => 0
    [3] => 0
    [4] => 4
    [5] => 4
)

$color_code_string = implode(",",$status);

输出继电器

1,0,0,4,4

$color_code_string = str_replace("0","'#F00'",$color_code_string); 
$color_code_string = str_replace("1","'#00bcd4'",$color_code_string);
$color_code_string = str_replace("2","'#4caf50'",$color_code_string);
$color_code_string = str_replace("3","'#bdbdbd'",$color_code_string);
$color_code_string = str_replace("4","'#ff9900'",$color_code_string);

例外

SyntaxError: illegal character
colors: ['#00bcd'#ff9900'','#F00','#F00','#ff9900','#ff9900']

//prints '#00bcd'#ff9900'','#F00','#F00','#ff9900','#ff9900'

如何实现预期输出如下

'#00bcd','#ff9900','#F00','#F00','#ff9900','#ff9900'

解决方法:

之所以发生这种情况,是因为您还要替换之前替换的颜色代码中的数字.
解决方案:在插入颜色数组之前遍历数组以进行替换:

// Translation table, saves you separate lines of stringreplace calls.
$colorCodes = array(
  0 => "#F00",
  1 => "#00bcd4",
  2 => "#4caf50",
  3 => "#bdbdbd",
  4 => "#ff9900",
);

// Build an array of colors based on the array of status codes and the translation table.
// I'm adding the quotes here too, but that's up to you.
$statusColors = array();
foreach($status as $colorCode) {
  $statusColors[] = "'{$colorCodes[$colorCode]}'";
} 

// Last step: implode the array of colors.
$colors = implode(','$statusColors);

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐