一,当调用静态属性和静态方法时
::与->的作用相同,只不过使用的对象不一样!::引用类里面的静态方法或者属性,而且不需要实例化!
建立一个类,并且建立一个静态属性$a,一个静态方法b,如下:
[php]
view plain copy
class test {
static public $a;
static public function b...
总结一些工作中用到或碰到的SQL语句,希望能与大家分享,同时也希望大家能提供更多的精妙SQL语句…..
1、delete table1 from (select * from table2) as t2 where table1.id=t2.id
2、truncate table table1 (不在事务日志中做记录,比delete table快...
service vsftpd restart
service vsftpd status
chkconfig vsftpd on
setsebool ftp_home_dir=1
service iptables status
service iptables stop
chkconfig iptables off
chmod 777 /var/www
ch...