功能不起作用

时间:2015-01-09 04:35:45

标签: php html css

代码应包含1087210878之间的内容,但只需要10872个内容。

错误在哪里?你能帮帮我吗?

2 个答案:

答案 0 :(得分:3)

你写了

   $nereden = "10872";
   $nereye = "10878";

  for($a=$nereden; $a<=nereye; $a++){ // put $a<=$nereye insted of $a<=nereye
   $site = "http://stackoverflow.com/";
     $link = "http://stackoverflow.com/questions/$a";

$ variable($)必须在php中具有变量值

答案 1 :(得分:0)

我认为你应该像这样在int变量中声明它,

$nereden = 10872;
$nereye = 10878;

如果您在字符串中对其进行分析,则会与$nereden="1"$nereye ="1"进行比较,并且它会一次运行。