8月5号技术培训-付培举
技术文档
08/06/2013
1、验证输入是否为数字
var reg1 = new RegExp("^[0-9]*$");
var thisnum=$("#num"+id).val();
if(!reg1.test(thisnum)){
alert('Please enter the number');
return false;
}
var thisnum=$("#num").val();
var reg1 = /^\d+$/;
if(thisnum.match(reg1) == null){
alert('Please enter the number');
return false;
}
2、GEOIP
1、下载php版本的api接口
2、配置php模块
把 GeoIP 安装成 php 扩展
yum install GeoIP GeoIP-data GeoIP-devel
下载 GeoIP 数据库
wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz
gzip -d GeoLiteCity.dat.gz
mv GeoLiteCity.dat /var/lib/GeoIP/GeoIPCity.dat
下载 GeoIP 的 PECL 扩展
下载地址 http://pecl.php.net/package/geoip
wget -c http://pecl.php.net/get/geoip-1.0.7.tgz
tar -zxvf geoip-1.0.7.tgz
安 装 GeoIP 的 PECL 扩展
cd geoip-1.0.7
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config --with-geoip
make
make install
在 php.ini 里加上
extension=geoip.so
接着重启一下 php 就行了
现在,你可以使用 php 手册里的 GeoIP 部份函数了
3、ereg_replace
Deprecated: Function ereg_replace() is deprecated in \includes\templates\classic\templates\tpl_header_currencies.php on line 27
php5.3的版本不支持ereg_replacep这个函数,可以使用preg_replace代替ereg_replace
php5.3以上的版本不支持ereg()函数,而是使用preg_match()函数;不支持ereg_replace()函数,而使用preg_replace()函数。
作废函数如下:
call_user_method()(使用 call_user_func() 替代)
call_user_method_array() (使用 call_user_func_array() 替代)
define_syslog_variables()
dl()
ereg() (使用 preg_match() 替代)
ereg_replace() (使用 preg_replace() 替代)
eregi() (使用 preg_match() 配合 ‘i’ 修正符替代)
eregi_replace() (使用 preg_replace() 配合 ‘i’ 修正符替代)
set_magic_quotes_runtime() 以及它的别名函数 magic_quotes_runtime()
[color=olive]session_register() (使用 $_SESSION 超全部变量替代)
session_unregister() (使用 $_SESSION 超全部变量替代)
session_is_registered() (使用 $_SESSION 超全部变量替代)
set_socket_blocking() (使用 stream_set_blocking() 替代)
split() (使用 preg_split() 替代)
spliti() (使用 preg_split() 配合 ‘i’ 修正符替代)
sql_regcase()
mysql_db_query() (使用 mysql_select_db() 和 mysql_query() 替代)
mysql_escape_string() (使用 mysql_real_escape_string() 替代)
废弃以字符串传递区域设置名称. 使用 LC_* 系列常量替代.
mktime() 的 is_dst 参数. 使用新的时区处理函数替代.
处理方法:editplus编辑器中,正则替换
替换ereg(),eregi():用preg_match替换
ereg\("([^"]+)"替换为:preg_match("/\1/"
ereg\('([^"]+)'替换为:preg_match('/\1/'
eregi\("([^"]+)"替换为:preg_match("/\1/i"
eregi\('([^"]+)'替换为:preg_match('/\1/i'
替换ereg_replace(),eregi_replace():用preg_replace()替换
ereg_replace\("([^"]+)"替换为:preg_replace("/\1/"
ereg_replace\('([^"]+)'替换为:preg_replace('/\1/'
ereg_ireplace\("([^"]+)"替换为:preg_replace("/\1/i"
ereg_ireplace\('([^"]+)'替换为:preg_replace('/\1/i'
如果 ereg_replace 的第一个参数不是正则表达式,可以用 str_replace 直接来替换
split用explode替换或preg_split替换