上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页
摘要: 给php代码添加规范的注释更多参考http://phpdoc.org/docs/latest/index.html在phpdocumentor中,注释分为文档性注释和非文档性注释。所谓文档性注释,是那些放在特定关键字前面的多行注释,特定关键字是指能够被phpdoc分析的关键字,例如class,var... 阅读全文
posted @ 2015-11-16 16:44 稻禾盛夏 阅读(10628) 评论(0) 推荐(0) 编辑
摘要: 一、php在apache中运行模式php在apache中一共有三种工作方式:CGI模式、FastCGI模式、Apache模块DLL)以下分别比较:1. CGI模式与模块模式比较:php在apache中两种工作方式的区别(CGI模式、Apache模块DLL)这两种工作方式的安装:PHP在Apache ... 阅读全文
posted @ 2015-11-15 15:46 稻禾盛夏 阅读(212) 评论(0) 推荐(0) 编辑
摘要: .htaccess文件url重写 当上一条规则匹配 并转换后 符合下一条规则的 继续下一条的匹配转换RewriteRule ^shangpin-([0-9a-zA-Z]+)/category-([0-9]+)-([0-9]+)-(.+)\.html$ shangpin-$4&id=$2&page=... 阅读全文
posted @ 2015-11-14 15:45 稻禾盛夏 阅读(133) 评论(0) 推荐(0) 编辑
摘要: ecshop 后台商品列表默认只显示分类下的商品,而不显示扩展分类中的商品,以下是我个人给出的解决方法: 打开admin/includes/lib_goods.php 第839行左右的位置 可以看到如下代码: 把以上这行代码的内容换成如下内容即可: 其中get_extension_goods函数是  阅读全文
posted @ 2015-11-14 10:13 稻禾盛夏 阅读(320) 评论(0) 推荐(0) 编辑
摘要: isset(PHP 4, PHP 5)isset — 检测变量是否设置检测变量是否设置,并且不是 NULL。如果 var 存在并且值不是 NULL 则返回 TRUE,否则返回 FALSE。$a = "test";$b = "anothertest";var_dump(isset($a)); ... 阅读全文
posted @ 2015-11-10 11:39 稻禾盛夏 阅读(960) 评论(0) 推荐(0) 编辑
摘要: 在 form 元素上加上 autocomplete="off" 这个,这样的话不管浏览器是否设置禁用自动完成,该 form 中都会被禁用。这个属性不是标准的属性,但是 IE 和 Firefox 均支持 阅读全文
posted @ 2015-11-07 14:32 稻禾盛夏 阅读(241) 评论(0) 推荐(0) 编辑
摘要: cshop 后台增加一个左侧列表菜单menu菜单需要修改三个文件:/admin/includes/inc_menu.php/admin/includes/inc_priv.php/languages/zh_cn/admin/common.php 1.在/admin/includes/inc_menu 阅读全文
posted @ 2015-11-05 16:23 稻禾盛夏 阅读(162) 评论(0) 推荐(0) 编辑
摘要: ucenter手册:http://www.phpddt.com/manual/ucenter/html/index.htm参考:http://www.thinkphp.cn/topic/1557.htmlwblog1根目录| – index.php//前台入口文件| – admin.php| – W... 阅读全文
posted @ 2015-11-05 14:37 稻禾盛夏 阅读(325) 评论(0) 推荐(0) 编辑
摘要: str = 'C:\fakepath\ll.doc';str.substring(str.lastIndexOf("\\")+1,str.lastIndexOf(".")); //输出ll 阅读全文
posted @ 2015-11-02 00:19 稻禾盛夏 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 阅读目录写在前面谷歌控制台Elements面板查看元素上绑定的事情样式操作总况console.logconsole.infoconsole.errorconsole.warnconsole.debugconsole.dirxmlconsole.group和console.groupEndconsol... 阅读全文
posted @ 2015-11-01 23:24 稻禾盛夏 阅读(198) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页