PHP是一种易于学习和使用的服务器端脚本语言。只需要很少的编程知识你就能使用PHP建立一个真正交互的WEB站点。本教程并不想让你完全了解这种语言,只是能使你尽快加入开发动态web站点的行列。我假定你有一些HTML(或者HTML编辑器)的基本知识和一些编程思想。
很多网站上的投票依据是ip地址,不同的ip地址一天可投票一次 下面的代码就是利用curl扩展来伪造ip地址 达到无限制投票; $times = $_POST['times']; //投票次数 $url = $_POST['url']; //投票地址[某个选手下方投票按钮的链接] while ($times) { $ip1 = 'X-FORWARDED-FOR:'.rand(115,225).'.'
更新。 //即使Client断开(如关掉浏览器),PHP脚本也可以继续执行. ignore_user_abort(); // 执行时间为无限制,php默认的执行时间是30秒,通过set_time_limit(0)可以让程序无限制的执行下去
php $host="localhost"; $uname="database username"; $pass="database password"; $database = "database
// local file that should be send to the client $local_file = 'test-file.zip'; // filename that the user gets as default $download_file = 'your-download-name.zip'; // set the download rate limit (=> 2
class Ender{ private $enkey;//加密解密用的密钥 //构造参数是密钥 public function __construct($key=''){ if(!$key){ $this->enkey=$key; } } //设置密钥 public function set_key($key){ $this->enkey=$key; } private function key
php /*PHP图片加文字水印类库 该类库暂时只支持文字水印,位置为右下角,颜色随机 调用方法: 1、在需要加水印的文件顶部引入类库: include_once 'imageClass.php';
php session_start (); header ( 'Content-type: image/png' ); //创建图片 $im = imagecreate($x=130,$y=45 );
php /* * Created on 2011-07-28 * Author : LKK , http://lianq.net * 使用方法: require_once('mypage.php');
$string = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc ut elit id mi ultricies adipiscing. Nulla facilisi. Praesent pulvinar, sapien vel feugiat vestibulum, nulla dui pretium orci, n
php $Database_name = 'somedb'; $table = 'sometable'; Define ('H', 'localhost'); define ('N', 'root')
php function randColor(){ $letters = "1234567890ABCDEF"; for($i=1;$i<6;$i++){ $pos = rand(0,16); $str
/* ** Connect to database: */ // Connect to the database (host, username, password) $con = mssql_connect('localhost','admin','foo') or die('Could not connect to the server!'); // Select a database: ms
php class emp { var $name; var $address; var $dept; function assign_info($n,$a,$d) { $this->name=$n;
用在服务器上提供下载的php代码,可以指定被下载的文件名,可以动态指定文件内容 // local file that should be send to the client $local_file =
php /*==================================================================*/ /* 文件名:BaseLogic.class.php
可解压缩zip文件。它有两个参数:压缩文件的路径、目标文件的路径。 function unzip_file($file, $destination) { // create object $zip = new ZipArchive() ; // open archive if ($zip->open($file) !== TRUE) { die ('Could not open archive')
php为图片加水印的代码 php $source=imagecreatefromjpeg('E:/image/guide_pic.jpg'); $thumb=imagecreatefromjpeg('E:/image/l
php if(isset($_POST['email'])){ $email = $_POST['email']; if(filter_var($email, FILTER_VALIDATE_EMAIL)){
php常用日期函数总结: 包括检查日期格式是否合法,检查时间是否合法时间 ,时间比较函数,返回两个日期相差几秒、几分钟、几小时或几天。 function check_date($date) { //检查日期是否合法日期