我在管理区有一个文本框,用于输入类别名称。现在,这就是其中的内容
活动主页
就像上面那样。由空格分隔的两个类别。所以现在我正试图从数据库中获取类别,这是通过这种方式完成的。(我正在使用SMOF框架)
echo $data[\'exclude_categories\'];
如果我这样做,它会发出回声
events homepage
然后我试着在每个类别之间加一个-号和一个逗号,就像这样
//looping through my key to get the values
$string = explode(" ", $data[\'exclude_categories\'] );
foreach($string as $cat) {
//concatenating my values into one string
$string .= \'-\' .$cat.",";
}
echo $data[\'exclude_categories\']; //for testing purposes
//trimming the trailing comma from the string
$string = substr($string, 0, -1); // Delete the last character
我的问题是,我得到了这个“数组事件-主页”,我不知道为什么会有这个数组