Pascal <-> PHP | Logical and
Pascal  Used keywords: and 
and
Description
par1 and par2Input
- par1 - Logical value
- par2 - Logical value
Output
- Result - Logical value
Examples
Pascal
In the source code you can find the equivalent of the above table, for easier orientation at the end of each line is a comment which shows the result.a1 := false and false; { a1 = false}
a2 := false and true; { a2 = false}
a3 := true and false; { a3 = false}
a4 := true and true;  { a4 = true}Pascal
Even one example in what situations we can use the operation logical and:a and b
a and true
10 >a and a>5
.
PHP  Used keywords: && 
&&
Description
par1 && par2Input
- par1 - Logical value
- par2 - Logical value
Output
- Result - Logical value
Examples
PHP
In the source code you can find the equivalent of the above table, for easier orientation at the end of each line is a comment which shows the result.$a1 = false && false; // a1 = false
$a2 = false && true; // a2 = false
$a3 = true && false; // a3 = false
$a4 = true && true;  // a4 = truePHP
Even one example in what situations we can use the operation logical and:$a && $b
$a && true
10 >$a && $a>5
Pascal  Used keywords: and 
and
Description
par1 and par2Input
- par1 - Logical value
- par2 - Logical value
Output
- Result - Logical value
Examples
Pascal
In the source code you can find the equivalent of the above table, for easier orientation at the end of each line is a comment which shows the result.a1 := false and false; { a1 = false}
a2 := false and true; { a2 = false}
a3 := true and false; { a3 = false}
a4 := true and true;  { a4 = true}Pascal
Even one example in what situations we can use the operation logical and:a and b
a and true
10 >a and a>5
.
PHP  Used keywords: and 
and
Description
par1 and par2Input
- par1 - Logical value
- par2 - Logical value
Output
- Result - Logical value
Examples
PHP
In the source code you can find the equivalent of the above table, for easier orientation at the end of each line is a comment which shows the result.$a1 = false and false; // a1 = false
$a2 = false and true; // a2 = false
$a3 = true and false; // a3 = false
$a4 = true and true;  // a4 = truePHP
Even one example in what situations we can use the operation logical and:$a and $b
$a and true
10 >$a and $a>5
You can find it in the following collections: logical operators
Logical and in another programming language:
Differences to: