已采纳回答 / Joye
$file_put_contents($filename,$filetext)函数只是将filetext内容写入$filename里不是读取filetextecho $file_get_contents()函数才是写取你写入的内容
2015-01-04
最新回答 / 殷昊
肯定不行的,因为你这样少了个参数,从而导致time()-1这个为value的值,也就相当于把time()-1的值存到名为test的cookie中了,而不会起到删除的作用
2014-12-31
最新回答 / sxian_wang
是这样写的<...code...>class Truck extends Car{ function speedUp(){ $this->speed +=60; return $this->speed; }}
2014-12-30
最赞回答 / sxian_wang
在一个类里面,如果想要在类内部里面调用类的静态方法或者静态变量,就需要使用self::xxx,可以和this伪变量类比下。而在类的外部的话,就要用className::XXX,可以不用实例化直接调用。
2014-12-30
最新回答 / Phan
mcrypt_encrypt/mcrypt_decrypt 函数的iv参数没有赋值,所以抛出warning,导致后面php的设置cookie函数失效(在header里面),再次抛出warning。iv参数的设置参考官网。
2014-12-30