Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <?php
- $righe_config = [];
- //apertura; in c++ sarebbe ifstream il_file("config.ini")
- $il_file = @fopen("config.ini", "r");
- if ($il_file)
- {
- //ciclo di lettura
- while( $riga_letta = fgets($il_file))
- $righe_config[] = $riga_letta;
- //chiusura del file
- fclose($il_file);
- }
- else
- {
- //die("Impossibile aprire il file di configurazione config.ini");
- echo "Impossibile aprire il file di configurazione config.ini";
- header("refresh:3; url=index.html");
- }
- for ($i=0; $i<count($righe_config); $i++)
- echo $righe_config[$i] . "<br>";
- if ($righe_config[2]===",")
- echo "<h1>UGUALE</h1>";
- else
- echo "<h1>DIVERSO</h1>";
- //$righe_config = file("config.ini", FILE_IGNORE_NEW_LINES); //legge tutte le righe nell'array
- // for ($i=0; $i<count($righe_config); $i++)
- // {
- // $righe_config[$i] = rtrim($righe_config[$i]);
- // echo "#{$righe_config[$i]}#<br>\n";
- // }
- ?>
- <html lang="<?php echo "{$righe_config[0]}"; ?>">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <?php
- ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement