<?php // 获取时间 echo date("Y-m-d H:i:s") . "<br />"; # 2019-07-05 09:56:53 // 读取服务器端文件输出 $file = fopen("hello.txt", "r"); // 按行读取 while (!feof($file)) { echo fgets($file) . "<br />"; } // 关闭文件 fclose($file); // 设置cookie setcookie("name", "Tom"); ?>
<?php // 获取时间 echo date("Y-m-d H:i:s") . "<br />"; # 2019-07-05 09:56:53 // 读取服务器端文件输出 $file = fopen("hello.txt", "r"); // 按行读取 while (!feof($file)) { echo fgets($file) . "<br />"; } // 关闭文件 fclose($file); // 设置cookie setcookie("name", "Tom"); ?>