PHP的CMS系统 Havalite 经验

Havalite 是一个开源的轻量级的 CMS 博客程序,基于 PHP 和 SQLite 开发。

fmms 2012-04-01   17020   0

PHP框架 Stubbles 经验

Stubbles 是一个 PHP5 的框架,主要功能有:注释支持、IoC反转控制、JPA以及一个很小型的MVC引擎。

fmms 2012-04-30   11888   0
PHP   Web框架  

Solr的PHP接口 Solarium 经验

Solarium 是 Solr 的 PHP 开发接口, Solr 是一个开源的搜索服务器。Solr 使用 Java 语言开发,主要基于 HTTP 和 Apache Lucene 实现。

openkk 2011-12-30   26727   0

PHP博客迷 BlogMi 经验

“博客迷”(BlogMi)是一套基于PHP语言的开源、简洁、高效的博客程序,它满足个人博客必要的建站需求,剔除了常见博客程序复杂臃肿的功能。因此,“迷”取令人着迷、迷你之意。

fmms 2012-04-23   44646   0

PHP编码规范 经验

为了提高工作效率,保证开发的有效性和合理性,并最大程度提高程序代码的可读性和可重复利用性,提高沟通效率,需呀一份代码编辑规范。

jopen 2014-03-03   34331   0
PHP   PHP开发  

php上传文件类 经验

php上传文件类

jopen 2012-12-12   13843   0
PHP开发   PHP  

PHP语法特点 经验

感觉PHP在语法上与C++特别相似。只要会C++,PHP基本上不用记什么。

jopen 2014-10-12   22280   0
PHP   PHP开发  

PHP框架:SPFramework 经验

SPFramework。这是一个十分简洁的PHP框架

jopen 2015-09-09   14994   0

php的composer的安装步骤 经验

 cd :/home/wuguowei/software/composer

gwzj2227 2016-02-21   8488   0
P54

  PHP Tutorial Lite 文档

PHP Tutorial Lite

guojf99 2013-05-01   482   0
PHP开发   HTTP   HTML   PHP   Basic  

PHP学习开始 博客

从今天起,不定时的更新自己学习的情况,以便自己监督自己. 时间:2011-12-10 内容:open家园,开始学习了. 今天自己觉得过的还是不错的,虽然天天在上班.但是谁不是这样那?我们每天上班不就是为了心中的"梦".

awydss 2011-12-10   989   0
HTC  
P

PHP编码规范 文档

对于一个开发团队来说,每个人的代码不是给自己写的,是给团队里现在的和将来的每一个人写的!

471156231 2013-06-27   2490   0
PHP开发   PHP  
P

php实用指南 文档

在学习PHP过程中,比较痛苦的就是参考资料的问题。 对于新手,很多的资料都不够实用: 1、深入的资料往往看不懂。 2、大而全的资料虽然好,但是东西太多了,比如PHP官方手册,很多新手一个个函数去查,比较累,而且每个函数有很多的参数和用法,看起来比较吃力。 3、完整的入门资料,虽然通俗,但是不便于查询。 4、示例中用到很多的函数,看一点就不得不查阅一下涉及到的函数的意思 5、很多资料讲授的方法,在最新的PHP中已经不建议使用了,甚至已经被废除!

leedtest 2013-10-23   3412   0
P

Wicked Cool PHP 文档

PHP is an easy-to-use scripting language perfect for quickly creating the Web features you need. Once you know the basics of how the language works, wouldn't it be great to have a collection of useful scripts that solve those tricky problems and add interesting functionality to your site? We thought so, too.

jasonyu 2010-09-19   3608   0
PHP  

php日期加减 代码段

对于每天的统计数据,我们日期 date("Ymd") 转换成整型来作为数据库的主键,所以在寻找一段时间统计数据的时候需要用到时间的加减; 例如,30天内的数据 function getData($writetime , $limit){ $start_unix = strtotime($start); for ($i = 0; $i < $limit; $i++) { $writetime = d

ccpp 2015-01-04   1165   0
PHP  

MongoDB操作PHP 代码段

仿写CI的,带测试实例。 mongo_config.php <?php $config["host"] = "localhost"; $config["user"] = ""; $config["pass"] = ""; $config["port"] = 27017; $config["dbname"] = "test"; $config['persist'] = TRUE; $config['

fg360 2015-01-04   7777   0
MongoDB  

php读写文件代码 代码段

save_file.php代码 <?php session_start(); $handle = fopen($_POST['original_file_name'], "w"); $text = $_POST['file_contents']; if(fwrite($handle, $text) == FALSE){ $_SESSION['error'] = '<span class="redt

lpkde 2015-01-18   1089   0
PHP  

php操作SVN类 代码段

<?php /** * * This class for execute the external program of svn * * @auth Seven Yang <qineer@gmail.com> * */ class SvnPeer { /** * List directory entries in the repository * * @param string a specifi

6e72 2015-01-22   1471   0
PHP  

php 抓取图片 代码段

php 获取网站图片并存入本地文件 <?php /** * Created by PhpStorm. * Date: 15-2-9 * Time: 下午3:10 */ for($i=0;$i<1000;$i++){ $getData['page'] = $i+1; getImg($getData); } function getImg($getData) { $path = "D:/NFS/img

ef4w 2015-02-09   1339   0
PHP  

PHP 文件上传示例 代码段

<html> <head> <title>File Uploader</title> </head> <body> <h3>File Upload</h3> Select a file to upload:<br> <form action="uploader.php" method="post" enctype="multipart/form-data"> <input type="file"

phpde 2015-03-17   950   0
PHP  
1 2 3 4 5 6 7 8 9 10