->用于类 *** 作,举例如下:
<?php
// starting word
$word = new COM("word.application") or die("Unable to instantiate Word")
echo "Loaded Word, version {$word->Version}\n"
//bring it to front
$word->Visible = 1
//open an empty document
$word->Documents->Add()
//do some weird stuff
$word->Selection->TypeText("This is a test...")
$word->Documents[1]->SaveAs("Useless test.doc")
//closing word
$word->Quit()
//free the object
$word = null
?>
php中,不等于用!=表达,大于或等于用>=表达是对的
1、php不等一种是这样 != 还一种是<>这2种写法都可以
2、判断$a是否小于$bif($a<$b){//是}else{//不是}
3、判断$a是否大于或等于$bif($a>=$b)//是}else{//不是}
4、判断$a是否不等于$bif($a != $b){//是}else{//不是}
是定义数组时做键、值映射用的。foreach($_POST AS $key=>$value){
。。。
}
遍历数组的时候,就是将$_POST数组的键、值分别赋值给 $key和$value变量。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)