php中的小知识点(小白笔记整理):-----------------------------------------------------读取本地文件内的数据: file_get_contents($filename); (对文件数据渲染到页面时,需掌握phph和html混编) 对有固定格式的数据进行裁切: explode($delimiter, $string); 把数据存储到本地文件中去: file_put_contents($filename, $data,FILE_APPEND);…