PHP生成普通的靜態檔案

2021-08-10 01:22:28 字數 767 閱讀 2947

<?php

class

file

/**生成靜態快取

*@param string $key 快取檔名

*@param array $value 快取內容

*@param string $path 快取路徑

*/public

function

cachedata

($key,$value='',$path='')

//生成快取檔案

$dir = dirname($filename);

if(!is_dir($dir))

//file_put_contents($key,$value);$value只能是字串格式,所以可以序列化一下,生成快取檔案

return file_put_contents($filename,json_encode($value));

}//讀取快取

if(!is_file($filename))else

}}$file = new file();

$data = [

'1'=>'1',

'2'=>'2'

];//生成快取

$file->cachedata('cache1',$data);

//讀取快取

$file->cachedata('cache1');

//刪除快取

$file->cachedata('cache1',null);

php生成靜態檔案

1,通用生成方法 獲取檔案內容 content file get contents id 110 filename id.html 設定靜態檔案路徑及檔名 if file exists filename unlink filename 檢查是否存在舊檔案,有則刪除 fp fopen filename...

PHP生成靜態檔案之真靜態

下面思路和 是在demo實現,非框架 實現思路 舉個例子 例如我們要把某個商品的詳情存入靜態頁面 html 獲取商品id 如果對應的靜態頁面存在否則 模板檔案 需要新建乙個page.html檔案 gid title price content 實現 需要新建乙個html 存放模板檔案的資料夾 hea...

PHP生成靜態html檔案的方法

1.php 1,下面使用模版的乙個方法 fp fopen templets.html a if fp else 簡單的將模板寫進乙個檔案中存為html.html 2,按時間生成html檔名 content 這是乙個以日期時間為檔名的靜態生成網頁的測試檔案,檔名格式一般為年月日時分秒.html dat...