我想希望结交会PHP的朋友! 博客

我想希望结交会PHP的朋友! 希望能够得到你们的帮助!我真的很喜欢PHP

rainbow 2010-12-31   1287   0
P

PHP 4完全中文手册 文档

讲到 PHP 的全名就蛮有趣的,它是一个递归的缩写名称,"PHP: Hypertext Preprocessor",打开缩写还是缩写。PHP 是一种 HTML 内嵌式的语言 (类似 IIS 上的 ASP)。而 PHP 独特的语法混合了 C、Java、Perl 以及 PHP 式的新语法。它可以比 CGI 或者 Perl 更快速的执行动态网页。

xiaoxuan 2011-11-07   4518   0
PHP开发   手册   PHP  
P

php新手上路中文教程 文档

 PHP是一种易于学习和使用的服务器端脚本语言。只需要很少的编程知识你就能使用PHP建立一个真正交互的WEB站点。本教程并不想让你完全了解这种语言,只是能使你尽快加入开发动态web站点的行列。我假定你有一些HTML(或者HTML编辑器)的基本知识和一些编程思想。

abeet 2011-09-07   3642   0

网上投票系统刷票PHP代码 代码段

'.rand(115,225).'.'.rand(115,225); $arr = array('a','b','c','d','e','f','g','h','i','j','k','l','m','n'

ccpp 2015-01-04   2214   0

PHP实现的计划(定时)任务 代码段

ignore_user_abort()函数搭配set_time_limit(0)和sleep($interval)即可实现程序自动运行更新。 //即使Client断开(如关掉浏览器),PHP脚本也可以继续执行. ignore_user_abort();

eb5y 2015-01-06   2635   0
PHP  

连接 MySQL 数据库PHP代码 代码段

php $host="localhost"; $uname="database username"; $pass="database password"; $database = "database

eb5y 2015-01-06   4508   0
MySQL  

使用 PHP 限制下载速度 代码段

// 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

jopen 2015-01-13   984   0
PHP  

强大的PHP加密解密类 代码段

md5($encrypt_key); $ctr=0; $tmp = ""; for ($i=0;$i{ if ($ctr==strlen($encrypt_key)) $ctr=0; $tmp.= substr($txt

b4c2 2015-01-13   2236   0
PHP  

PHP图片加文字水印类库 代码段

php /*PHP图片加文字水印类库 该类库暂时只支持文字水印,位置为右下角,颜色随机 调用方法: 1、在需要加水印的文件顶部引入类库: include_once 'imageClass.php';

pbd4 2015-01-17   1682   0
PHP  

php生成验证码代码 代码段

php session_start (); header ( 'Content-type: image/png' ); //创建图片 $im = imagecreate($x=130,$y=45 );

jopen 2015-01-21   1337   0
PHP  

简单的PHP分页函数 代码段

php /* * Created on 2011-07-28 * Author : LKK , http://lianq.net * 使用方法: require_once('mypage.php');

ded3b 2015-01-23   1709   0
PHP  

使用 gzcompress() 压缩数据的PHP代码 代码段

Praesent ipsum diam, consectetur vitae ornare a, aliquam a nunc. In id magna pellentesque tellus posuere

ded3b 2015-01-23   1107   0
PHP  

php代码备份mysql数据库 代码段

php $Database_name = 'somedb'; $table = 'sometable'; Define ('H', 'localhost'); define ('N', 'root')

b573 2015-01-24   2191   0
PHP  

php生成随机颜色 代码段

php function randColor(){ $letters = "1234567890ABCDEF"; for($i=1;$i<6;$i++){ $pos = rand(0,16); $str

edme 2015-01-23   1534   0
PHP  

php连接ms sql server的简单示例 代码段

server!'); // Select a database: mssql_select_db('Northwind') or die('Could not select a database.'); // Example

cf46d 2015-01-31   4533   0
PHP  

php 类定义和类使用实例 代码段

php class emp { var $name; var $address; var $dept; function assign_info($n,$a,$d) { $this->name=$n;

cf46d 2015-01-31   1219   0
PHP  

php处理文件下载的代码 代码段

用在服务器上提供下载的php代码,可以指定被下载的文件名,可以动态指定文件内容 // local file that should be send to the client $local_file =

cf46d 2015-01-31   1951   0
PHP  

php数据处理公共类 代码段

php /*==================================================================*/ /* 文件名:BaseLogic.class.php

n672 2015-02-07   1484   0
PHP  

PHP解压缩zip文件 代码段

可解压缩zip文件。它有两个参数:压缩文件的路径、目标文件的路径。 function unzip_file($file, $destination) { // create object $zip = new ZipArchive() ; // open archive if ($zip->open($file) !== TRUE) { die ('Could not open archive')

jopen 2015-03-03   1127   0
PHP  

php为图片加水印的代码 代码段

php为图片加水印的代码 php $source=imagecreatefromjpeg('E:/image/guide_pic.jpg'); $thumb=imagecreatefromjpeg('E:/image/l

程序猿123 2015-03-11   4428   0
PHP  
1 2 3 4 5 6 7 8 9 10