English 中文(简体)
如何避免产出出现错误?
原标题:how to avoid output foreach error?
  • 时间:2011-06-04 23:00:46
  •  标签:
  • php
  • foreach

http://php.net/manual/en/control-polis.foreach.php” rel=“nofollow”article,其中提到:

<><>>>>><>>>><>>>>><>>>>> 不能支持用@ 压制错误信息的能力。

我如何避免产出<代码>foreach误差? 我不想看到:

<>Warning:Invalid case provided for foreach()

Is there a way to make an if else judgement?

最佳回答

Before foreach check if variable contain array:

if (is_array($var))
{
   foreach...
}
问题回答

prefix the variable with a (array) like this.

foreach( (array) $array_thats_not_an_array as $key => $value ){
    echo $key .     . $value;
}
if(!empty($array)) {
  foreach($array as $a) {
    // do something
  }
}

我使用了OZ的建议,但在is_array测试上留下了一个错误。

但是,在待测试的阵列名称之前添加“@

    if (is_array((@$errors))){
      foreach ($errors as $error): ?>
        <?php echo $error; ?>
        <br/>
      <?php endforeach;
    }

and yes I know using @ is shoddy BUT I cannot get a tiny bit of inherited code working prettily. I can either spend another hour to fix that to get round a "your var is not defined" or stick a @ in and get the other things needed for a very ALFA version to share with a friend tomorrow. Oh and yes 11 pm and my brain is befuddled!

ATB Mr Grumpy
PS Big thanks to OZ_ for 95% of the solution!





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签