PHP:常用功能整理

<?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");
?>
上一篇:【Javaweb】监听器


下一篇:把书读薄-Shell入门基础