码迷,mamicode.com
首页 >  
搜索关键字:functions    ( 1849个结果
Jsp中如何在<c:forEach >标签内获取集合的长度
利用jstl标签functions的prefix属性的length属性值 1.首先在jsp页面导入jstl function标签 2.比如集合为messagelist 这样即可输出messagelist集合的长度了额! 3.注意和以下的区别count属性 current:当前这次迭代的(集合中的)项 ...
分类:Web程序   时间:2017-04-01 14:52:48    阅读次数:555
用shell写ngin启动脚本
#!/bin/bash[-f/etc/init.d/functions]&&./etc/init.d/functionspid=/application/nginx/logs/nginx.pidnginx=/application/nginx/sbin/nginxRED_COLOR=‘\E[1;31m‘GREEN_COLOR=‘\E[1;32m‘YELLOW_COLOR=‘\E[1;33m‘BLUE_COLOR=‘\E[1;34m‘PINK=‘\E[1;35m‘SHAN=‘\E[31;5m‘R..
分类:系统相关   时间:2017-03-31 22:02:48    阅读次数:155
shell编写 ngin启动脚本
#!/bin/bash[-f/etc/init.d/functions]&&./etc/init.d/functionspid=/application/nginx/logs/nginx.pidnginx=/application/nginx/sbin/nginxRED_COLOR=‘\E[1;31m‘GREEN_COLOR=‘\E[1;32m‘YELLOW_COLOR=‘\E[1;33m‘BLUE_COLOR=‘\E[1;34m‘PINK=‘\E[1;35m‘SHAN=‘\E[31;5m‘R..
分类:系统相关   时间:2017-03-31 22:02:36    阅读次数:153
postgresql 一些操作备忘
1、left join 或者right join 数据库在通过连接两张或多张表来返回记录时,都会生成一张中间的临时表,然后再将这张临时表返回给用户。 2、处理json 官方解释地址 https://www.postgresql.org/docs/9.5/static/functions-json.h ...
分类:数据库   时间:2017-03-29 16:12:04    阅读次数:431
C语言ini格式配置文件的读写
依赖的类 1 /*1 utils.h 2 *# A variety of utility functions. 3 *# 4 *# Some of the functions are duplicates of well known C functions that are not 5 *# sta ...
分类:编程语言   时间:2017-03-29 15:44:09    阅读次数:384
Linux系统下ping整个网段IP脚本
#!/bin/bash#加载functions,action需要用到./etc/init.d/functions#for循环网段1-254forvarin{1..254};do#定义变量IPip=172.21.0.$var#ping的信息不要显示在屏幕ping-c2$ip>/dev/null2>&1if[$?=0];then#如果ping成功显示OKaction"$ip"/bin/trueelse#如果ping不成功显..
分类:系统相关   时间:2017-03-28 19:54:04    阅读次数:296
jstl_fn方法库
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%> 1,startsWith,endsWith 2,indexOf 3split ...
分类:Web程序   时间:2017-03-21 22:47:34    阅读次数:224
makefile函数
8 Functions for Transforming Text 8.1 Function Call Syntax 8.2 Functions for String Substitution and Analysis 8.3 Functions for File Names 8.4 Functio ...
分类:其他好文   时间:2017-03-13 16:13:46    阅读次数:213
[c++] Inline Function
The inline functions are a C++ enhancement feature to increase the execution time of a program. Compiler replace the definition at compile time instea ...
分类:编程语言   时间:2017-03-12 23:59:07    阅读次数:325
nginx启动脚本和配置文件
#vim/etc/init.d/nginx#!/bin/bash#chkconfig:-3021#description:httpservice.#SourceFunctionLibrary./etc/init.d/functions#NginxSettingsNGINX_SBIN="/usr/local/nginx/sbin/nginx"NGINX_CONF="/usr/local/nginx/conf/nginx.conf"NGINX_PID="/usr/local/nginx/logs/nginx.pi..
分类:其他好文   时间:2017-03-12 22:05:35    阅读次数:247
1849条   上一页 1 ... 78 79 80 81 82 ... 185 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!