Cocaine world championship
4 ноября 2014, 07:12
<?php $feed = simplexml_load_file("адресс сайта без кавычек"); $children = $feed->children('http://www.w3.org/2005/Atom'); ?>
echo $children->title //после выполнения этого скрипта на экране вы увидите заголовок ленты
error_page 503 /during_build.html; location / { if (-f /var/www/during_build.html) { return 503; } } location = /during_build.html { root /var/www/; internal; }
<span style="width: expression(alert('OLOLO!'));"></span>
mdconfig -a -t swap -s 128M -u 10 newfs -U /dev/md10 mount /dev/md10 /tmp chmod 1777 /tmp
mdmfs -S -o async -s 1024m md0 /tmpfs
portinstall dmidecode
dmidecode -t memory
#!/bin/sh for i in `find . -name "*.php" -type f` do echo $i iconv -f WINDOWS-1251 -t UTF-8 "$i" > tmp mv -f tmp "$i" done
swapoff -a swapon -a
chsh username
cat /proc/cpuinfo
cd /usr/ports/www/youtube_dl make install clean rehash
youtube-dl 'http://www.youtube.com/watch?v=3YxaaGgTQYM'
%PHP_BIN% -d output_buffering=0 -d PEAR\go-pear.phar
%PHP_BIN% -d output_buffering=0 -d phar.require_hash=0 PEAR\go-pear.phar
ZendServer\bin\go-pear.bat
pear channel-update pear.php.net pear upgrade pear pear channel-discover pear.phpunit.de pear channel-discover pear.symfony-project.com pear install phpunit/PHPUnit
phpunit
pear clear-cache pear channel-discover pear.phpunit.de pear channel-discover pear.symfony-project.com install --alldeps phpunit/PHPUnit
apt-get install sun-java6-jre apt-get install openjdk-6-jdk
deb http://ftp.us.debian.org/debian/ squeeze main non-free
<?php /** * @name Класс для работы со временем * @author Скитч. ICQ: 2134410. * @date 23.12.2011 * @version 0.1 */ class Mumbu_time{ <cut--> /** * длинные названия месяцов */ private $monthlong = array('января', 'февраля', 'марта', 'апреля', 'мая', 'июня', 'июля', 'августа', 'сентября', 'октября', 'ноября', 'декабря'); private $monthshort = array('янв', 'фев', 'мар', 'апр', 'май', 'июн', 'июл', 'авг', 'сен', 'окт', 'ноя', 'дек'); /** * множественные формы слов */ private $yearword = array('год', 'года', 'лет'); private $monthword = array('месяц', 'месяца', 'месяцев'); private $dayword = array('день', 'дней', 'дней'); private $hourword = array('час', 'часа', 'часов'); private $minuteword = array('минута', 'минуты', 'минут'); private $secondword = array('секунда', 'секунды', 'секунд'); /** * формат вывода даты */ private $year = 'y'; private $month = 'm'; private $day = 'd'; private $hour = 'H'; private $minute = 'i'; private $second = 's'; /** * @param $tz - timezone. */ function __construct($tz = null){ if($tz == null) date_default_timezone_set('Europe/Moscow'); else date_default_timezone_set($tz); } /** * Обрабатываем и выводим time() */ public function get(){ return time(); } /** * Выводим время $fullmonth - полное название месяца */ public function clock($time = null, $fullmonth = true){ $time = ($time == null ? $this->get() : $time); $d = date($this->day, $time); $m = date($this->month, $time); $y = date($this->year, $time); $m = ($fullmonth ? $this->monthlong[$m - 1] : $this->monthshort[$m - 1]); $full_time = $d.' '.$m.' '.$y.' в '.date(($this->hour != null ? $this->hour.':' : null) . ($this->minute != null ? ($this->hour == null ? ':' : null) . $this->minute : null), $time); $date = date('d.m.Y', $time); $time = date('H:i', $time); if($date == date('d.m.Y')) $full_time = date('Сегодня в H:i', $time); if($date == date('d.m.Y', time()-60*60*24)) $full_time = date('Вчера в H:i', $time); return $full_time; } /** * Время с момента */ public function time_ago($time= null){ #$ltime = $this->get() - $time; $ltime = ($time == null ? $this->get() : $time) - $time; if($ltime < 5){ return 'только что'; }elseif($ltime < 60){ return $ltime.' '.$this->plural_form($ltime, 'секунду', 'секунды', 'секунд').''; }elseif($ltime < 3600){ return round($ltime/60).' '.$this->plural_form(round($ltime/60), 'минуту', 'минуты', 'минут'); }elseif($ltime < 86400){ return round($ltime/3600).' '.$this->plural_form(round($ltime/3600), 'час', 'часа', 'часов'); }elseif($ltime > 1814400){ return $this->clock($ltime); }elseif($ltime > 604800){ return round($ltime/604800).' '.$this->plural_form(round($ltime/86400), 'неделю', 'недели', 'недель'); }elseif($ltime > 86400){ return round($ltime/86400).' '.$this->plural_form(round($ltime/86400), 'день', 'дня', 'дней'); } } /** * Обратный отсчёт * @var early - время от которого начинается отсчет * @var later - время до которого идет отсчет * @param enclosure - вложенность вывода */ public function backtime($early, $later = null, $enclosure = 5){ $out = ''; $count = 0; if ($later == null) $later = $this->get(); $year = abs(date('y', $later) - date('y', $early)); if($year > 0){ if($enclosure != 0 and $count < $enclosure) { ++$count; $out .= $year.' '.$this->plural_form($year, $this->yearword); } } $month = abs(date('m', $later) - date('m', $early)); if($month != 0){ if($enclosure != 0 and $count < $enclosure) { ++$count; $out .= ' '.$month.' '.$this->plural_form($month, $this->monthword); } } $day = abs(date('d', $later) - date('d', $early)); if($day > 0){ if($enclosure != 0 and $count < $enclosure) { ++$count; $out .= ' '.$day.' '.$this->plural_form($day, $this->dayword); } } $hour = abs(date('H', $later) - date('H', $early)); if($hour > 0){ if($enclosure != 0 and $count < $enclosure) { ++$count; $out .= ' '.$hour.' '.$this->plural_form($hour, $this->hourword); } } $minute = abs(date('i', $later) - date('i', $early)); if($minute > 0) { if($enclosure != 0 and $count < $enclosure) { ++$count; $out .= ' '.$minute.' '.$this->plural_form($minute, $this->minuteword); } } $second = abs(date('s', $later) - date('s', $early)); if($second > 0) { if($enclosure != 0 and $count < $enclosure) { $out .= ' '.$second.' '.$this->plural_form($second, $this->secondword); } } return $out; } /** * Форма множественного числа */ private function plural_form($num, $array){ $q = ($num % 10 == 1 && $num % 100 != 11 ? 0 : ($num % 10 >= 2 && $num % 10 <= 4 && ($num % 100 < 10 or $num % 100 >= 20) ? 1 : 2)); return ($q == 0 ? $array[0] : ($q == 1 ? $array[1] : ($q == 2 ? $array[2] : null))); } } ?>
$time = new Mumbu_time(); echo 'До Нового года осталось: '.$time->backtime(mktime(23,59,59,12,31,2011));
До Нового года осталось: 11 месяцев 5 дней 1 час 47 минут 59 секунд
$time = new Mumbu_time(); echo $time->clock();
26 Января 11 в 22:14
none /dev/pts devpts rw 0 0
rm -rf /dev/ptmx mknod /dev/ptmx c 5 2 chmod 666 /dev/ptmx umount /dev/pts rm -rf /dev/pts mkdir /dev/pts mount /dev/pts
function cut($text){ $full_text = explode("<cut/>",$text); return $full_text; }
<?php function twitter($name, $count){ //$name - логин юзера, $count - сколько последних сообщений выводить $c = $count + 1; $dom = new DomDocument(); $dom->load("http://twitter.com/statuses/user_timeline/".$name.".xml?count=".$c); $twit = $dom->getElementsByTagName("text"); $date = $dom->getElementsByTagName("created_at"); $id = $dom->getElementsByTagName("id"); for ($i=0;$i<$count;$i++){ list($dweek, $m, $d, $time, $cl, $y) = explode(" ", $date->item($i*2)->nodeValue); $month_str = array( "Jan","Feb","Mar", "Apr","May","Jun", "Jul","Aug","Sep", "Oct","Nov","Dec"); $month_int = array( "января", "февраля", "марта", "апреля", "мая", "июня", "июля", "августа", "сентября", "октября", "ноября", "декабря"); $m = str_replace($month_str, $month_int, $m); $postdate = $d." ".$m." ".$y; $postid = $id->item($i*2)->nodeValue; $post = $twit->item($i)->nodeValue; $post = bbcode($post); echo $post.' (<a href="http://twitter.com/'.$name.'/status/'.$postid.'">'.$postdate.'</a>)<br/>'; } } ?>
function numword() { $args = func_get_args(); $num = $args[0] % 100; if ($num > 19) { $num = $num % 10; } switch ($num) { case 1: { return $args[1]; } case 2: case 3: case 4: { return $args[2]; } default: { return $args[3]; } } }
echo numword('1', 'человек', 'человека', 'человек');