JavaScript验证表单函数大全
<script>
/*
用途:校验ip地址的格式
输入:strIP:ip地址
返回:如果通过验证返回true,否则返回false;
(continue reading…)
JavaScript验证表单函数大全
<script>
/*
用途:校验ip地址的格式
输入:strIP:ip地址
返回:如果通过验证返回true,否则返回false;
(continue reading…)
/**
* ascii encode
*/
function asciiencode($c){
$len = strlen($c);
$a = 0;
while ($a < $len)
{
$ud = 0;
if (ord($c{$a}) >=0 && ord($c{$a})<=127)
{
$ud = ord($c{$a});
$a += 1;
}
elseif (ord($c{$a}) >=192 && ord($c{$a})<=223)
{
$ud = (ord($c{$a})-192)*64 + (ord($c{$a+1})-128);
$a += 2;
}
else if (ord($c{$a}) >=224 && ord($c{$a})<=239)
{
$ud = (ord($c{$a})-224)*4096 + (ord($c{$a+1})-128)*64 + (ord($c{$a+2})-128);
$a += 3;
}
else if (ord($c{$a}) >=240 && ord($c{$a})<=247)
{
$ud = (ord($c{$a})-240)*262144 + (ord($c{$a+1})-128)*4096 + (ord($c{$a+2})-128)*64 + (ord($c{$a+3})-128);
$a += 4;
}
else if (ord($c{$a}) >=248 && ord($c{$a})<=251)
{
$ud = (ord($c{$a})-248)*16777216 + (ord($c{$a+1})-128)*262144 + (ord($c{$a+2})-128)*4096 + (ord($c{$a+3})-128)*64 + (ord($c{$a+4})-128);
$a += 5;
}
else if (ord($c{$a}) >=252 && ord($c{$a})<=253)
{
$ud = (ord($c{$a})-252)*1073741824 + (ord($c{$a+1})-128)*16777216 + (ord($c{$a+2})-128)*262144 + (ord($c{$a+3})-128)*4096 + (ord($c{$a+4})-128)*64 + (ord($c{$a+5})-128);
$a += 6;
}
else if (ord($c{$a}) >=254 && ord($c{$a})<=255)
{ //error
$ud = false;
}
$scill .= "&#$ud;";
}
return $scill;
}
$content = html_entity_decode(asciiencode($row['subcontent']));
< ?php
class ascii
{
function decode($str)
{
preg_match_all( “/(d{2,5})/”, $str,$a);
$a = $a[0];
foreach ($a as $dec)
{
if ($dec < 128)
{
$utf .= chr($dec);
}
else if ($dec < 2048)
{
$utf .= chr(192 + (($dec – ($dec % 64)) / 64));
$utf .= chr(128 + ($dec % 64));
}
else
{
$utf .= chr(224 + (($dec – ($dec % 4096)) / 4096));
$utf .= chr(128 + ((($dec % 4096) – ($dec % 64)) / 64));
$utf .= chr(128 + ($dec % 64));
}
}
return $utf;
}
####### Multiple Languages ####
config.linkVars = L
config.sys_language_uid = 0
config.sys_language_overlay = 1 (continue reading…)
t3lib_div::loadTCA($tableName);
$GLOBALS['TCA'][$tableName]['columns']...
convert -set option:modulate:colorspace rgb -modulate 100,0 D:/wamp/www/test.jpg D:/wamp/www/test1.jpg
typo3:
$picConf['image.']['file.']['params'] = ' -set option:modulate:colorspace rgb -modulate 100,0 ';
http://www.imagemagick.org/script/command-line-options.php#modulate
泛黄图片:
convert -set option:modulate:colorspace sRGB -modulate 100,0 -fill “rgb(237,170,73)” -tint 100 -modulate 100,80,104 -quality 100 test1.jpg test2.jpg
对图像进行转换,它主要用来对图像进行格式的转化,同时还可以做缩放、剪 切、模糊、反转等操作。
exec(“D:/imagemagick/ImageMagick-6.6.0-Q16/convert.exe convert -monochrome D:/wamp/www/test.jpg D:/wamp/www/test1.jpg”);
Extension developers may use the htmlArea RTE to edit textarea fields in frontend plugins. In order to do so, you must invoke the htmlArea plugin in the plugin class and insert some markers in the HTML template.
Invoking the htmlArea RTE frontend plugin (continue reading…)
var start;
var intervalProcess;
window.onload = function () {
if(document.all) { (continue reading…)