PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php function stroka($i){ // $f = file ('test.txt'); $f = [ "123", "231", "312", ]; if (!$f) { die ("open failed\n"); } $cnt = count ($f); $str = ''; if ($i < $cnt and $i>=0) { $str = trim ($f[$i]); echo $str; } } echo stroka(0); ?>
Show:  
Copy Clear