0
How could i get random lines as string from(proxy.txt) to proxy.php.
Random lines as string https://code.sololearn.com/wwPoniTFxl1W/?ref=app https://code.sololearn.com/w3lXhYmyip43/?ref=app
1 Respuesta
0
You can use function file("proxy.txt"). It returns array of lines. Also file_get_contents() can help but it returns string, so additionaly need to split: explode("\n", $stringResult);