[ create a new paste ] login | about

Link: http://codepad.org/LOZdQd81    [ raw code | output | fork ]

PHP, pasted on May 6:
1
2
3
4
5
6
7
8
9
10
11
12
<?php 

echo "First example: ";
echo 0 == "string1"; 

echo "\nSecond example: ";
echo 0 == "string2"; 

echo "\nThird example: ";
echo "string1" == "string2"; 

?>


Output:
1
2
3
First example: 1
Second example: 1
Third example: 


Create a new paste based on this one


Comments: