This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This class provides a simple interface for OpenID (1.1 and 2.0) authentication. | |
* Supports Yadis discovery. | |
* The authentication process is stateless/dumb. | |
* | |
* Usage: | |
* Sign-on with OpenID is a two step process: | |
* Step one is authentication with the provider: | |
* <code> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int zeroCount = 0; | |
double reiz = 1; | |
for (int x = 0; x < n; x++) { | |
if (arr[x] == 0) { | |
zeroCount++; | |
} | |
if (zeroCount == 2) { | |
break; | |
} |