if ($index % 2 == 0) $align = 'right'; else $align = 'left';
$align = $index % 2 ? 'left' : 'right';
db.yourCollection.find().limit(-1).skip(yourRandomNumber).next()
server {
listen 192.168.56.100:80;
server_name .flat.ubuntu;
root /home/homm/www/project_dev/www;
location / {
include fastcgi_params;
fastcgi_pass 127.0.0.1:9030;
fastcgi_param SCRIPT_FILENAME $document_root/test.php;
}
}
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_script_name;
$handle = fsockopen('example.com', 80);
if ($handle !== false)
{
print('работает');
fclose($handle);
} else {
print('не работает');
}
$text = preg_replace('#\s#u', ' +$1', $text);