1
0
This repository has been archived on 2023-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
dtux__serveur-vote-lalis/include/Condorcet/Documentation/Election Class/public Election--parseVotesWithoutFail.md

43 lines
1.5 KiB
Markdown
Raw Normal View History

2022-09-21 12:39:11 +02:00
## public Election::parseVotesWithoutFail
### Description
```php
public Election->parseVotesWithoutFail ( SplFileInfo|string $input [, bool $isFile = false , ?Closure $callBack = null] ): int
```
Similar to parseVote method. But will ignore invalid line. This method is also far less greedy in memory and must be prefered for very large file input. And to combine with the use of an external data handler.
##### **input:** *```SplFileInfo|string```*
String, valid path to a text file or an object SplFileInfo or extending it like SplFileObject.
##### **isFile:** *```bool```*
If true, the string input is evalatued as path to text file.
##### **callBack:** *```?Closure```*
Callback function to execute after each registered vote.
### Return value:
*(```int```)* Number of invalid records into input (except empty lines). It's not an invalid votes count. Check Election::countVotes if you want to be sure.
---------------------------------------
### Related method(s)
* [Election::addVote](../Election%20Class/public%20Election--addVote.md)
* [Election::parseCandidates](../Election%20Class/public%20Election--parseCandidates.md)
* [Election::parseVotes](../Election%20Class/public%20Election--parseVotes.md)
* [Election::addVotesFromJson](../Election%20Class/public%20Election--addVotesFromJson.md)
---------------------------------------
### Examples and explanation
* **[Manual - Add Vote](https://github.com/julien-boudry/Condorcet/wiki/II-%23-B.-Vote-management-%23-1.-Add-Vote)**