Jump to content

Novichok

Newbie
  • Posts

    5
  • Joined

  • Last visited

Novichok's Achievements

Explorer

Explorer (1/14)

0

Reputation

  1. как вывести из файла значение определенной строки
  2. А как вывести из данного файла file.html значение 1.725 file.html: ? V min max 1 1048920 1.725 2.4725 2 1608312 1.96 4.9932
  3. Так Выводим случайную фразу (строку) из файла: <? $file=" file.html"; # имя файла, где хранятся фразы $array=file($file); echo $array[rand(0,count($array)-1)]; ?> А как вывести из файла file.html значение 1.725 ? V min max 1 1048920 1.725 2.4725 2 1608312 1.96 4.9932 Заранее благадарю
  4. <?php $handle = fopen("./*.txt", "r"); while (!feof($handle)) { $buffer = fgets($handle, 4096); echo $buffer; } fclose($handle); ?>
  5. как установить PHP4.4.2 для IIS V5.1 и ODBC SQL Server
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy