码迷,mamicode.com
首页 >  
搜索关键字:lua require module    ( 21569个结果
PHP include()和require()方法的区别
本文总结了PHP的include()和require()两种包含外部文件的方法的不同之处。基本上就是,加载失败的处理方法,性能,以及使用弹性方面的不同。PHP的include()和require()是两种包含外部文件的方法,对于这两种方法有什么区别,很多初学者可能不是很明白。下面总结一下PHP in...
分类:Web程序   时间:2014-05-26 21:53:57    阅读次数:299
PHPMailer邮件类使用错误分析
PHPMailer配置清单如下:require_once ‘class.phpmailer.php‘;$receiver = ”;$mail =newPHPMailer( );$mail->IsSMTP();$mail->IsHTML( true );$mail->CharSet= “GB2312″...
分类:Web程序   时间:2014-05-26 21:52:38    阅读次数:404
nodejs的重要支柱
概念:模块(Module)和包(Package)是Node.js最重要的支柱。 开发一个具有一定规模的程序不可能只用一个文件,通常需要把各个功能拆分、分装、然后组合起来。模块正式为了实现这种方式而诞生,在浏览器JavaScript中,脚本模块的拆分和组合通常使用HTML的script标签来实现,.....
分类:Web程序   时间:2014-05-26 20:33:20    阅读次数:356
nginx-rrd监控nginx访问数
一 、查看已安装的nginx是否包含stub_status模块 /usr/local/nginx/sbin/nginx -V nginx version: Nginx/1.2.0 configure arguments: --with-http_stub_status_module 确定支持stub...
分类:其他好文   时间:2014-05-26 16:34:01    阅读次数:233
magento后台开发学习笔记一(入门实例向)
目的是做一个grid,参考博客http://www.sunzhenghua.com/magento-admin-module-development-part1-grid-forms-tabs-controllers,由于少了很多基础的配置,我便补充了一下一。开发的目录结构如下:Jago->Empl...
分类:其他好文   时间:2014-05-26 16:17:01    阅读次数:312
python模块与包加载机制
模块的搜索路径:When a module namedspamis imported, the interpreter searches for a file namedspam.pyin the current directory, and then in the list of director...
分类:编程语言   时间:2014-05-26 15:09:11    阅读次数:367
include require
include 没有找到文件不会报错,只有警告,可以放在PHP文件的中间。require 没找到文件会报错,一般放到PHP文件开始的部分。两者使用起来并没有多大的区别,一般重要文件用require。
分类:其他好文   时间:2014-05-26 14:39:35    阅读次数:184
lua cURL使用笔记
cURL cURL是 URL命令行工具, 即 command URL, 可以通过命令行模拟各种应用协议的发包, 包括FTP HTTP HTTPS,官方网站 http://curl.haxx.se/luacurllua curl是基于curl的库libcurl(http://curl.haxx.s.....
分类:其他好文   时间:2014-05-26 13:49:03    阅读次数:688
1分钟试用PowerShell 5.0新功能PowerShellGet安装Script Browser和Script Analyzer
微软PowerShell 产品组上周发布了PowerShell 5.0 PowerShellGet功能。有了它,IT 人员可以方便地搜索,安装,更新PowerShell Module。在这篇博客中,我将演示如果使用PowerShellGet安装微软ScriptBrowser和ScriptAnalyz...
分类:其他好文   时间:2014-05-26 12:10:24    阅读次数:232
#Apache#多站点与虚拟目录配置
1、修改配置文件Apache\conf\httpd.conf找到LoadModule vhost_alias_module modules/mod_vhost_alias.so 去掉前面的#找到Include conf/extra/httpd-vhosts.conf ...
分类:其他好文   时间:2014-05-26 11:51:47    阅读次数:247
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!