English 中文(简体)
PHP while (variable=mysql_fetch_assoc) - Interpretation
原标题:PHP while(variable=mysql_fetch_assoc) - explanation

我一直在与C#合作,因此我很奇怪:

    while($variable=mysql_fetch_assoc)

{   $X=$variable[ A ];
    $Y=$variable[ B ];  
}

www.un.org/Depts/DGACM/index_spanish.htm 如果它像一个普通的 lo,那么X,Y将重新set,每 lo,右,吗?

我未能用手册研究如何运作。 我猜测,在每一处,它都会向下部分的阿索拉提款。 但是,这通常在购买力平价中被称作什么? 我只字不提。

问题回答

购买力平价中的转让是一种回报所分配值的表述。 如果取回一行,结果将是不法的,这将使 lo得以继续。

<>code>mysql_fetch_assoc((及其相关职能)提前$result 每当内部点人接到要求时,该编码即为: 因此,<代码> 不变将每次对<代码><<>while状况进行检查时,都分配一个新的行距阵列。 在最后一行返回后,mysql_fetch_assoc(>可再向内部点发送,这样,下届打电话将返回false。 <代码>可变一经伪造,条件就不再得到满足,休息时间也随之退出。

在PHP(也是Java等人)中,只要对零、空壳、NULfalse 进行评价,情况就属实。 它不一定要评价毛豆价值。 因此,这种假体是行之有效的。

http://www.un.org。

www.un.org/Depts/DGACM/index_spanish.htm 如果它像一个普通的 lo,那么X,Y将重新set,每 lo,右,吗?

是的,他们用每个新行的新价值重新分配。

或许这样看待守则是有益的:

while (($variable = mysql_fetch_assoc($result)) == true) {
  // loops until the fetch function returns false (no more rows)
  // $variable will have be an associative array containing the  next  row from the recordset in $result
}

它为这样做提供了简便的途径:

$variable = mysql_fetch_assoc();
while ($variable) {
  // loop

  $variable = mysql_fetch_assoc();
}

它是指“除非你能够<条码>,否则你可以履行这一职能,否则会做的是工作。

如果能够找到一个要素,即,则它会退回一个阵列,这样你就可以离开 lo。

这部法典只是短文:

$variable = mysql_fetch_assoc($res);
while($variable != FALSE) {
  // do something
  $variable = mysql_fetch_assoc($res);
}




相关问题
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 ...

热门标签