Home  >  Article  >  Backend Development  >  foreach($string as $key => $val)这是什么用法?该怎么解决

foreach($string as $key => $val)这是什么用法?该怎么解决

WBOY
WBOYOriginal
2016-06-13 12:40:55950browse

foreach($string as $key => $val)这是什么用法?
if(is_array($string)) { //如果其为一个数组则循环执行此函数
            foreach($string as $key => $val) {
                $string[$key] = daddslashes($val, $force);
            }

看discuz的代码分析文章,在daddslashes函数中看到了这个,遍历数组,给key赋值?可是我这样写的话,就一直报错,为什么呢?

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn