- 浏览: 119678 次
- 性别:
- 来自: 北京
最新评论
-
ulric:
第一个函数的for循环应该从0开始
判断一个字符串是否为回文 -
ocaicai:
c语言的影子比较重啊!呵呵O(∩_∩)O~
java实现约瑟夫环问题 -
烟的傀儡:
通俗易懂!!太棒了
java实现约瑟夫环问题 -
eachcan:
中等什么意思?非常小是多大?写文章请负点责任。
基础知识:MySQL数据类型及列类型 (1) -
rorely:
谢谢,少加了一个条件。呵呵。更正好了
编程实现“加3减3乘3除3”
文章列表
Call to undefined function mysql_connect()问题的解决方法
配置php与mysql的连接 php.ini文件
看加粗部分。
; Windows Extensions
; Note that ODBC support is built in, so no dll is needed for it.
; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5)
; extension folders as well as the separate P ...
- 2009-07-01 10:13
- 浏览 645
- 评论(0)
编程十诫
发布时间:2009-6-09 08:52 作者: 陈皓 信息来源:
PHPChina
转自:http://www.phpchina.com/html/83/n-34583.html1.- DRY: Don’t repeat yourself.
DRY 是一个最简单的法则,也是最容易被理解的。但它也可能是最难被应用的(因为要做到这样,我们需要在泛型设计上做相当的努力,这并不是一件容易的事)。它意味着,当我们在两个或多个地方的时候发现一些相似的代码的时候,我们需要把他们的共性抽象出来形一个唯一的新方法,并且改变现有的地方的代码让他们以一些合适的参数调用这个新的方法。
DRY
这一 ...
- 2009-06-30 23:20
- 浏览 571
- 评论(0)
转自:http://tech.itzero.com/2006/1015/1202.html
我们要把现实世界中的各种信息转换成计算机能理解的东西,这些转换后的信息就形成了数据。例
如,某人的出生日期是“1987年5月23日”,他的身高是170厘米,等等。数据不仅包括数字、 ...
- 2009-06-30 16:53
- 浏览 1906
- 评论(1)
<?php
#使用反撇号,暗示作为命令来执行
$result=`date`;
echo "<p>the server timestamp is: $result</p>";
echo "<hr color=red>";
#使用shell_exec()
$result1=shell_exec("date");
echo "<p>the server timestamp is: $result1</p> ...
- 2009-06-30 15:50
- 浏览 1176
- 评论(0)
<?php
#使用反撇号,暗示作为命令来执行
$result=`date`;
echo "<p>the server timestamp is: $result</p>";
echo "<hr color=red>";
#使用shell_exec()
$result1=shell_exec("date");
echo "<p>the server timestamp is: $result1</p> ...
- 2009-06-30 15:50
- 浏览 629
- 评论(0)
<?php
#删除空目录
function delDir($dir){
if($od=@opendir($dir)){
while(($file=readdir($od))!=false){
if(($file==".")||($file==".."))continue;
if(is_dir($dir."/".$file)) delDir($dir."/".$file);
...
- 2009-06-30 15:12
- 浏览 797
- 评论(0)
<?php
#删除空目录
function delDir($dir){
if($od=@opendir($dir)){
while(($file=readdir($od))!=false){
if(($file==".")||($file==".."))continue;
if(is_dir($dir."/".$file)) delDir($dir."/".$file);
...
- 2009-06-30 15:12
- 浏览 625
- 评论(0)
在php中,文件操作中,filetype(string),结果有8中:block,char,dir,fifo,file,link,socket,unknown
<?php
#文件名称
echo basename("file/fileTest.php")."<hr color=red>";
#文件名称,不含后缀
echo basename("file/fileTest.php",".php")."<hr color=red>";
...
- 2009-06-29 21:17
- 浏览 1108
- 评论(0)
在php中,文件操作中,filetype(string),结果有8中:block,char,dir,fifo,file,link,socket,unknown
<?php
#文件名称
echo basename("file/fileTest.php")."<hr color=red>";
#文件名称,不含后缀
echo basename("file/fileTest.php",".php")."<hr color=red>";
...
- 2009-06-29 21:17
- 浏览 854
- 评论(0)
反射类ReflectionClass,其中包含的方法可以通过下面的方法获取:示例如下。
<?php
$class=new ReflectionClass("ReflectionClass");
$methods=$class->getMethods();
foreach($methods as $method)
echo $method->getName()."<br>";
?>
运行结果如下:
__clone
export
__construct
__toString
get ...
- 2009-06-28 15:00
- 浏览 775
- 评论(0)
反射类ReflectionClass,其中包含的方法可以通过下面的方法获取:示例如下。
<?php
$class=new ReflectionClass("ReflectionClass");
$methods=$class->getMethods();
foreach($methods as $method)
echo $method->getName()."<br>";
?>
运行结果如下:
__clone
export
__construct
__toString
get ...
- 2009-06-28 15:00
- 浏览 492
- 评论(0)
接口的创建使用关键字interface,实现接口,使用关键字implements。接口的方法全部是public方法,而且没有方法体。一个类可以实现多个接口。示例如下:
<?php
interface myInterface{
const str="中国你好";
public function getV();
public function getH($name,$value);
}
interface expressEmotion{
public function getEmotio ...
- 2009-06-28 13:56
- 浏览 662
- 评论(0)
<?php
class BaseClass{
function __construct(){
echo "<br><font color=red>this is the base class constructor</font><br>";
}
}
class SubClass extends BaseClass{
function __construct(){
#子类调用父类构造方法的两种,父类名::__construct() ...
- 2009-06-28 13:34
- 浏览 894
- 评论(0)
<?php
class BaseClass{
function __construct(){
echo "<br><font color=red>this is the base class constructor</font><br>";
}
}
class SubClass extends BaseClass{
function __construct(){
#子类调用父类构造方法的两种,父类名::__construct() ...
- 2009-06-28 13:34
- 浏览 518
- 评论(0)
clone方法的使用,浅拷贝对象。示例如下:
<?php
class Foo{
private $x;
private $y;
public function setX($x){
$this->x=$x;
}
public function setY($y){
$this->y=$y;
}
public function getX(){
return $this->x;
...
- 2009-06-28 10:59
- 浏览 578
- 评论(0)