PHP教程 --- 最近更新

  • 创建时间 - 作者 - 爱好者
    [发送地址] [发表评论] [加入收藏] [发送邮件]
    通过参数表可以传递信息到函数,这个表可以是变量或常量以逗号(,)分隔构成的。

    PHP3支持使用值来传递变量(默认),通过调用传递,和默认的参数值.可变长度的参数列表目前不被支持,但是可以通过传递数组来实现.

    function takes_array($input) {

    echo "$input[0] + $input[1] = ", $input[0]+$input[1];

    }
    目前没有更新
  • 创建时间 - 作者 - 爱好者
    [发送地址] [发表评论] [加入收藏] [发送邮件]
    默认的,函数参数通过值来传递.如果你希望允许一个函数可以修改它的参数的值,你可以通过调用来传递他们. 如果你希望一个函数参数意志通过引用被传递,你可以预先函数定义中在参数名前加符号(&): function foo( &$bar ) { $bar .= ' and something extra.'; } $str = 'This is a string, '; foo ($str); echo $str; // 输出 'This...... ......
    目前没有更新
  • 创建时间 - 作者 - 爱好者
    [发送地址] [发表评论] [加入收藏] [发送邮件]
    一个函数对于标量参数可以定义C++-风格的默认值. function makecoffee ($type = "cappucino") { echo "Making a cup of $type.\n"; } echo makecoffee (); echo makecoffee ("espresso"); 上面的程序段的输出如下: Making a cup of cappucino. Making a cup of espresso. 默认值必须是一个常量表达式,不是一个变量或
    目前没有更新
  • 创建时间 - 作者 - 爱好者
    [发送地址] [发表评论] [加入收藏] [发送邮件]
    一个class是一个变量和使用这些变量的函数的组合。定义class使用如下的语法: <?phpclass Cart { var $items; // Items in our shopping cart // Add $num articles of $artnr to the cart function add_item ($artnr, $num) { $this->items[$artnr] += $num; } // Take $num articles of $artnr out of the cart function remove_item ($artnr, $num) { if ($this->items[$artnr] > $num) {...... ......
    目前没有更新
  • 创建时间 - 作者 - 爱好者
    [发送地址] [发表评论] [加入收藏] [发送邮件]
    这些工作和基本的学校里教的内容相似。 Table 7-1. Arithmetic Operators(表7-1算术操作符) example name result $a + $b Addition Sum of $a and $b.?/FONT> $a - $b Subtraction Remainder of $b subtracted from $a.?/FONT> $a * $b Multiplication Product of $a and $b.?/FONT> $a / $b Division Dividend of $a and $b.?/FONT> $a % $b Modulus Remainder of $a divided by $b. 其中,
    目前没有更新
  • 创建时间 - 作者 - 爱好者
    [发送地址] [发表评论] [加入收藏] [发送邮件]
    这个地方仅仅有一个真正的字符串操作符:串联符号“.”。

     

    $a = "Hello ";$b = $a . "World!";

    // now $b = "Hello World!"
    目前没有更新
  • 创建时间 - 作者 - 爱好者
    [发送地址] [发表评论] [加入收藏] [发送邮件]
    基本的赋值操作符就是“=”。您往往会倾向于认为它的含义就是“等于”。不要这样想,它真正的含义就是左侧的操作数获得右侧表达式的值。 一个赋值表达式的意义在于值的指派。也就是说,“$a=3”的值是3。这就允许您做这样的事情:   $a = ($b = 4) + 5; // $a is equal to 9 now, and $b has been set to 4.   作为赋...... ......
    目前没有更新
  • 创建时间 - 作者 - 爱好者
    [发送地址] [发表评论] [加入收藏] [发送邮件]
    位操作符允许您精细的操作数据的每一个位。

    Table 7-2. Bitwise Operators(表7-2位操作符)

    example name result
    $a & $b And Bits that are set in both $a and $b are set.?/FONT>
    $a | $b Or Bits that are set in either $a or $b are set.?/FONT>
    ~ $a?/FONT> Not Bits that are set in $a are not set, and vice versa.






    目前没有更新
  • 创建时间 - 作者 - 爱好者
    [发送地址] [发表评论] [加入收藏] [发送邮件]
    Table 7-3. Logical Operators(表7-3 逻辑操作符)   example name result?/FONT> $a and $b And True of both $a and $b are true.?/FONT> $a or $b Or?/FONT> True if either $a or $b is true.?/FONT> $a xor $b Or?/FONT> True if either $a or $b is true, but not both.?/FONT> ! $a Not?/FONT> True if $a is not true.?/FONT> $a && $b And?/FONT> True of both $a and $b are true.?/FONT> $a...... ......
    目前没有更新
  • 创建时间 - 作者 - 爱好者
    [发送地址] [发表评论] [加入收藏] [发送邮件]
    比较操作符,正如它的名字所示,允许您比较两个值。   Table 7-4. Comparson Operators(表7-4 比较操作符) example name result?/FONT> $a == $b Equal?/FONT> True if $a is equal to $b.?/FONT> $a != $b Not equal True if $a is not equal to $b.?/FONT> $a < $b Less than?/FONT> True if $a is strictly less than $b.?/FONT> $a > $b Greater than?/FONT> True if $a is stri...... ......
    目前没有更新
共 767 ,显示 571 - 580

搜索工具


《PHP教程》点击排行

《PHP教程》网友推荐