Архив

Архив Январь 2017
27 января 2017 Нет комментариев

Получить value всех отмеченных checkbox в блоке, перечисленные через запятую.

$('.catalog a.submit').live('click',function(){
	var options=[];
	$.each($(".catalog input[type=checkbox]:checked"),function(){
		options.push($(this).val());
	});
	alert(options);
	return false;
});
Categories: Javascript Tags: ,
23 января 2017 Нет комментариев

Проверить, что строка содержит только кириллицу:

if(preg_match('/^[а-яё]++$/ui',$letter)){
	//...
}
Categories: PHP Tags:
23 января 2017 Нет комментариев

В примере URL
http://revolution.rhga.ru/section/detail.php?section=obrazy-revolucii&element=za-velikuyu-edinuyu-i-nedelimuyu-rossiyu&sphrase_id=4555549

нужно привести к виду
http://revolution.rhga.ru/section/obrazy-revolucii/za-velikuyu-edinuyu-i-nedelimuyu-rossiyu.html

1. Получим массив параметров и их значений:

function format_url($url){
	$result=array();
	$pu=parse_url($url);
	if($pu['query']){
		$parts=explode('&',html_entity_decode($pu['query']));
		foreach($parts as $part){
			$param=explode('=',$part);
			$result[$param[0]]=$param[1];
		}
	}
	return $result;
}
print_r(format_url($url));
Array
(
    [section] => obrazy-revolucii
    [element] => za-velikuyu-edinuyu-i-nedelimuyu-rossiyu
    [sphrase_id] => 4555549
)

2. Затем сформируем URL в нужном нам формате:

function format_url($url){
	$result=$url;
	$arr=array();
	$pu=parse_url($url);
	if($pu['query']){
		$parts=explode('&',html_entity_decode($pu['query']));
		foreach($parts as $part){
			$param=explode('=',$part);
			$arr[$param[0]]=$param[1];
		}
		if($arr['section']&&$arr['element']){
			$result='/section/'.$arr['section'].'/'.$arr['element'].'.html';
		}
	}
	return $result;
}
Categories: PHP Tags:
17 января 2017 Нет комментариев
function resizeInput(){
	$(this).css('width',($(this).val().length*7.5)+'px');
}
$(document).ready(function(){
	$('.inputs input').each(resizeInput);
});
Categories: Javascript Tags: ,
17 января 2017 Нет комментариев
$.fn.toggleText=function(t1,t2){
	if(this.text()==t1)this.text(t2);
	else this.text(t1);
	return this;
};

Пример использования:

$(document).ready(function(){
	$(".shch").click(function(){
		$(this).toggleText('+','-');
		$(this).closest('li').children('ul').slideToggle();
		return false;
	});
});
Categories: Javascript Tags: ,
14 января 2017 Нет комментариев

Универсально:

background-image:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(0%,#0070bf),color-stop(100%,#005c9d));
background:-moz-linear-gradient(to bottom,#0070bf,#005c9d);
background:-webkit-linear-gradient(to bottom,#0070bf,#005c9d);
background:linear-gradient(to bottom,#0070bf,#005c9d);
Categories: CSS Tags:
13 января 2017 Нет комментариев
function sgp($url,$varname,$value){
	if(is_array($varname)){
		foreach($varname as $i=>$n){
			$v=(is_array($value))?(isset($value[$i])?$value[$i]:NULL):$value;
			$url=sgp($url,$n,$v);
		}
		return $url;
	}
	preg_match('/^([^?]+)(\?.*?)?(#.*)?$/',$url,$matches);
	$gp=(isset($matches[2]))?$matches[2]:'';
	if(!$gp)return $url;
	$pattern="/([?&])$varname=.*?(?=&|#|\z)/";
	if(preg_match($pattern,$gp)){
		$substitution=($value!=='')?"\${1}$varname=".preg_quote($value):'';
		$newgp=preg_replace($pattern,$substitution,$gp);
		$newgp=preg_replace('/^&/','?',$newgp);
	}
	else{
		$s=($gp)?'&':'?';
		$newgp=$gp.$s.$varname.'='.$value;
	}
	$anchor=(isset($matches[3]))?$matches[3]:'';
	$newurl=$matches[1].$newgp.$anchor;
	$newurl=rtrim($newurl,'&');
	$newurl=str_replace('&&','&',$newurl);
	$newurl=str_replace('?&','?',$newurl);
	return $newurl;
}

Использование:
Замена 1 параметра

<a href="<?=sgp($url,'key',$value)?>">test</a>

Удаление 1 параметра

<a href="<?=sgp($url,'key','')?>">test</a>

Замена более 1 параметра

<a href="<?=sgp($url,array('key1','key2'),array($value1,$value2))?>">test</a>

Удаление более 1 параметра

<a href="<?=sgp($url,array('key1','key2'),NULL)?>">test</a>

http://webew.ru/articles/743.webew
http://webew.ru/articles/5510.webew

Categories: PHP Tags: