首页课程Kelas menyeronokkan PHPLatihan bahagian operator PHP

Latihan bahagian operator PHP

目录列表

以下哪个符号对应于逻辑OR运算符?注意 | 和 || 的区别

在空格中输入恰当的值,使最终打印的$a为10,$b为18;

<?php $a = ; $b = ; $a += 2; --$b; echo $a; echo $b;

1/2