ccat 发表于 2005-8-16 13:42:02

php里如何使用if语句

我想这样表达:
if ((条件一) 和(条件二))
但是怎么写?

我找了好多书都只有一个的
是:
if (a==1)
{ }

ygw_ycf 发表于 2005-8-16 13:52:17

and

ccat 发表于 2005-8-16 16:16:57

if (a==1 and b==2)
是这样么?

涩兔子 发表于 2005-8-16 17:01:50

多使用C/C++的风格 :mrgreen:

if ( a == 1 && b == 2 ) {
    do your stuff here...
}

ccat 发表于 2005-8-16 17:21:50

原来可以这么用,我喜欢这样子的。

if ( a == 1 && b == 2 ) {
    do your stuff here...
}

涩兔子 发表于 2005-8-16 17:23:41

多看看PHP手册 :mrgreen:

jiangtao9999 发表于 2005-8-16 18:37:16

多看看PHP手册 :mrgreen: :twisted:

ccat 发表于 2005-8-16 18:47:59

那里有好的手册?我看到的台湾彭武兴先生所著的 <<PHP BIBLE>> 一书的简体中文版。上面没有写道这个例子。

涩兔子 发表于 2005-8-16 19:06:39

中文版的http://www.php.net/get/php_manual_zh.chm/from/a/mirror

英文原版的http://www.php.net/get/php_manual_en.chm/from/a/mirror

推荐英文原版的 :mrgreen:
页: [1]
查看完整版本: php里如何使用if语句