`
文章列表
Joomla(我测试用的版本是2.5.7)在BAE上总是发不失败的原因是因为Joomla中使用了statit::,而BAE的php执行环境并不支持static::(参考另一篇博文: http://goaheadtw.iteye.com/admin/blogs/1739640)。 在Joomla目下搜索”static::“得到如下结果:     Search "static::" (13 hits in 1 file)   D:\Joomla_2.5.7\libraries\joomla\application\daemon.php (13 hits) Line ...
以下文字参考自 http://hi.baidu.com/zxsz4085/item/0c2761a8134a0a38030a4dd5      php5.3中提出的static::作用域使我们不再需要使用self::和parent::。当希望指向最终的实现类时,就可以使用static::,这个限定符会在代码执行之前立即计算出继承层次结构上最后那个类的成员。这一过程被称为延迟绑定。 好像没看出有什么用,直接在父类中new那个最终实现类的对象然后调用不就行了吗?但是如果你不知道那个最终类叫什么,覆盖 的方法实现了什么样的效果,这时候似乎就有用了。static::作用域也可以应用在静态方法上 ...
转自: http://www.jb51.net/article/14397.htm   1 history.go(0) 2 location.reload() 3 location=location 4 location.assign(location) 5 document.execCommand('Refresh') 6 window.navigate(location) 7 location.replace(location) 8 document.URL=location.href 

python文件操作

#获取当前文件的全路径 os.path.realpath(__file__)    #获取当前文件所在目录和文件名 realpath = os.path.realpath(__file__) #pwd是目录,fileName是文件名 [pwd, fileName] = os.path.split(realpath)
SVN提交失败且提示的错误信息包含:“Access to ………… forbidden”,则出错的原因可能有: 1. 你没有这个应用的权限。 2. SVN提交的时候没有提示输入密码,这时即有可能是因为SVN缓存了认证信息引起的,解决问题的方法如下(windows环境): 点击鼠标右键——>TortoiseSVN——>Settings——>Saved Data, 然后点击"Autentication Data"右边的“clear”即可。 如下图所示:
转自: http://reader.youdao.com/sharelite?itemId=-447170961514257704&method=viewSharedItemThroughLink&sharedBy=-1137845767117085734  import subprocesscmd_res = {}res = subprocess.Popen(cmd,shell=True,stdout=subprocess.PIPE,stderr=subprocess.PIPE,close_fds=True);cmd_res['out']=res.stdout.readlin ...

tmp

http://mirrors.tuna.tsinghua.edu.cn/apache/hive/hive-0.9.0/hive-0.9.0.tar.gz

php时区设置

    博客分类:
  • php
转自: http://www.jb51.net/article/30483.htm   php.ini中设置data.timezone的值,可取的值有: Asia/Shanghai – 上海 Asia/Chongqing – 重庆 Asia/Urumqi – 乌鲁木齐 Asia/Hong_Kong – 香港 Asia/Macao – 澳门 Asia/Taipei – 台北 
转自: http://blog.csdn.net/dragon_fire/article/details/7587226   下载完之后,命令行输入:tar -xzvf tar -xzvf hadoop-0.20.203.0rc1.tar.gz进行解压 重命名为hadoop cd hadoop cd conf/core-site 修改 conf/core-site.xml: <configuration> <property> <name>fs.default.name</name> <value> ...
#display_errors display_errors=off表示不显示错误到页面   #log_errors log_errors=on表示显示错误,如果配置error_log指定的文件可写,则把错误写到error_log指定的文件,否则,还是会输出到页面。   以上这些情况都是在没有调用set_error_handler的情况下发生的,如果调用set_error_handler指定了指定的错误处理函数,那就得看自定义的错误处理函数把错误日志输出到哪里了!   使用CI框架我就发现错误日志总是显示到页面,后来发现CI框架调用了set_error_handler。这个问题但 ...
  Four different views regarding the design of a data warehousemust be considered: the top-down view, the data source view, the data warehouse view, and the business query view. The top-down view allows the selection of the relevant information necessary for the data warehouse. This information m ...
摘自《Data Mining - Concepts and Techniques》   In general, the warehouse design process consists of the following steps: 1. Choose a business process to model, for example, orders, invoices, shipments,inventory, account administration, sales, or the general ledger. If the business process is organi ...
摘自《Data Mining - Concepts and Techniques》   Fromthe architecture point of view, there are three data warehouse models: the enterprise warehouse, the data mart, and the virtual warehouse. Enterprise warehouse: An enterprise warehouse collects all of the information about subjects spann ...
  Data warehouse systems use back-end tools and utilities to populate and refresh their data (Figure 3.12). These tools and utilities include the following functions: Data extraction,which typically gathers data frommultiple, heterogeneous, and external sources Data cleaning, which detects erro ...
摘自《Data Mining - Concepts and Techniques》   Measures can be organized into three categories (i.e., distributive, algebraic, holistic), based on the kind of aggregate functions used. Distributive: An aggregate function is distributive if it can be computed in a distributed manner as follows. S ...
Global site tag (gtag.js) - Google Analytics