new RegExp('^'+pass2).test(pass1)
$myquery = new WP_Query( $args );
if( $myquery->have_posts() ) :
while( $myquery->have_posts() ) : $myquery->the_post();
...
endwhile;
endif;
add_action( 'pre_get_posts', 'my_function' );
function my_function( $query ) {
// здесь можно (и нужно) использовать conditional проверки
// и модифицировать запросы для разных страниц и исловий,
// все в одной фукнции.
if( $query->is_archive() && $query->is_main_query() ) :
$query->set(
'tag_id' => '1,10,15,2,30,31,32,35,89,55,120,140,150,4',
'author' => '1,2,3,50,150,140,35',
'posts_per_page' => '10',
'orderby' => 'date',
);
endif;
}
rating_entities
------------
id | rating_sum
articles
------------
id | rating_entity_id | ...
comments
------------
id | rating_entity_id | ...
ratings
------------
id | rating_entity_id | user_id | value
return $this->query( $this->prepare( $sql, $data ) );
root@server:/home/server# iperf -s
------------------------------------------------------------
Server listening on TCP port 5001
TCP window size: 85.3 KByte (default)
------------------------------------------------------------
[ 4] local [server_ip] port 5001 connected with [ip] port 49262
[ ID] Interval Transfer Bandwidth
[ 4] 0.0-10.5 sec 57.9 MBytes 46.1 Mbits/sec
root@server:/home/server# iperf -c [server_ip]
------------------------------------------------------------
Client connecting to [server_ip], TCP port 5001
TCP window size: 22.7 KByte (default)
------------------------------------------------------------
[ 3] local 192.168.1.2 port 49262 connected with [server_ip] port 5001
[ ID] Interval Transfer Bandwidth
[ 3] 0.0-10.2 sec 57.9 MBytes 47.7 Mbits/sec
<?session_start();?>
<form action="" method="post">
<input type="submit" name="send">
</form>
<?
if(isset($_POST['send']))
{
// Если нет ошибок
if(true)
{
$_SESSION['flash'] = 'Запись добавлена';
// обновление страницы
header("Location: ".$_SERVER['REQUEST_URI']);
}
}else{
// Обычный GET запрос
if(!empty($_SESSION['flash']))
{
print $_SESSION['flash'];
unset($_SESSION['flash']);
}
}
header('Location: /test.php');
Вот отличная CMS с живым community и русскими разработчиками на базе популярного, быстрого и безопастного фреймворка Kohana: http://kodicms.ru/
hash = function (str) {
var hash = 0;
var str = String(str);
if (str.length == 0) return hash;
for (i = 0; i < str.length; i++) {
char = str.charCodeAt(i);
hash = ((hash<<5)-hash)+char;
hash = hash & hash; // Convert to 32bit integer
}
return hash;
}