摘要:
CREATE FUNCTION `getSecurityTemplate`(uuid INT) RETURNS text CHARSET utf8 BEGIN DECLARE sTemp text; DECLARE sTempChd text; SET sTemp = ''; SET sTempCh 阅读全文
摘要:
new static() 是php 5.3添加的延迟静态绑定(后期延迟绑定)功能。 它和 new self() 的相同点在于都是用来实例化一个类, 但 new self() 是实例化代码声明时所在的类, 而 new static() 是实例化调用时所在的类。 事例: class A{ public 阅读全文
摘要:
@media only screen and (min-width: 320px){ html { font-size: 62.5% !important; }}@media only screen and (min-width: 640px){ html { font-size: 125% !im 阅读全文