输出出现未定义变量揭示:Notice: Undefined variable: str in

WBOY
Release: 2016-06-13 11:47:22
Original
1231 people have browsed it

输出出现未定义变量提示:Notice: Undefined variable: str in
function Call(){
    for($i=0;$i      {
       $str.= $i."
";
       }
    return $str;
}

echo Call();

输出进出现Notice: Undefined variable提示
------解决方案--------------------
Notice: Undefined variable
是说你使用了未经赋值的变量的值

在你的 $str.= $i."
"; 中首次进入时 $str 没有被赋过值,所以要报错

function Call(){<br />    $str = ''; //这句不能少<br />    for($i=0;$i<=10;$i++)<br />      {<br />       $str.= $i."<br>";<br />       }<br />    return $str;<br />}<br /><br />echo Call();
Copy after login

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!