Как объеденить file_get_contents и array_rand в PHP
Код:
<?php
$data = file_get_contents('./base.txt');
$convert = explode("n", $data);
for ($i=0;$i<count($convert);$i++){
echo $convert[$i].', ';
}
?>
$data = file_get_contents('./base.txt');
$convert = explode("n", $data);
for ($i=0;$i<count($convert);$i++){
echo $convert[$i].', ';
}
?>
Код:
<?php
$input = array("Neo", "Morpheus", "Trinity", "Cypher", "Tank");
$rand_keys = array_rand($input, 2);
echo $input[$rand_keys[0]] . "n";
?>
$input = array("Neo", "Morpheus", "Trinity", "Cypher", "Tank");
$rand_keys = array_rand($input, 2);
echo $input[$rand_keys[0]] . "n";
?>
Код:
$input = array_merge(file('./base.txt'), array("Neo", "Morpheus", "Trinity", "Cypher", "Tank"));
Код:
<?php
$input = array_merge(file('./base.txt'));
$rand_keys = array_rand($input, 2);
echo $input[$rand_keys[0]] . "n";
?>
$input = array_merge(file('./base.txt'));
$rand_keys = array_rand($input, 2);
echo $input[$rand_keys[0]] . "n";
?>