Home > php教程 > php手册 > 一个很简单的文本式留言板

一个很简单的文本式留言板

WBOY
Release: 2016-06-06 19:32:15
Original
1141 people have browsed it

自己写了一个文本式留言板大神勿喷第一次发求过。。。 无 ?php/*** 留言板类* qq232025079@126.com* 2013/11/17*/class message{public static $file = './message.txt'; //文件地址/*** 写入** param array data 要保存的信息(可以是二维数组)*/public sta

自己写了一个文本式留言板 大神勿喷 第一次发 求过。。。
<?php
	/**
	* 留言板类
	* qq232025079@126.com
	* 2013/11/17
	*/
	class message{

		public static $file = './message.txt';	 //文件地址
	
		/**
		*  写入
		*
		* param array data 要保存的信息(可以是二维数组)
		*/
		public static function put($data){
			if(empty($data)) return false;
			$text = self::setArray($data);
			file_put_contents(self::$file,$text);
		}
		/**
		*  获取
		*
		* return array
		*/
		public static function get(){
			$file = file_get_contents(self::$file);
			eval("\$return = {$file};");
			return $return;
		}
		/*
		* 将数组变成字符串形式
		*
		* return string
		*/
		protected static function setArray($arr){
			$return = 'array(';
			foreach($arr as $key=>$val){
				if(is_array($val)){
					$return .= "'{$key}'=>".self::setArray($val);
				}else{
					$return .= "'{$key}'=>'{$val}',";
				}			
			}
			$return = trim($return,',');
			$return .= ')';
			return $return;
		}
	}
	$data = message::get();	//假设取出的数据
	$data[] = array(1,2,3,4);	//增加一条数据
	message::put($data);	//必须得是一次取出的数据,否则会将原来的覆盖写
?>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template