我无法在foreach循环中输出某个会话,该会话包含某些字符串:
function cart(){
foreach($_SESSION as $name => $value){
}
}
这样做^
,输出所有会话,我希望它仅输出包含$ name cart_
的会话。
如果您有任何想法,将不胜感激。
答案 0 :(得分:0)
您似乎可以使用strpos:http://php.net/manual/en/function.strpos.php
function cart() {
foreach($_SESSION as $name => $value) {
if(strpos($name, 'cart_') !== FALSE) {
//echo here
}
}
}