- 1
- 2
- 3
- 4
- 5
- 6
- 7
$numbers= Array("1", "2", "3", "4", "5", "6", "7", "8", "9", "0");
if ($number){
for ($i=0;$i<strlen($number);$i++){
if (!in_array($number[$i], $numbers)){
return false;
}
}
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
+68.5
$numbers= Array("1", "2", "3", "4", "5", "6", "7", "8", "9", "0");
if ($number){
for ($i=0;$i<strlen($number);$i++){
if (!in_array($number[$i], $numbers)){
return false;
}
}
проверка на число
+134.1
public function delete($table_name, $where='1', $file=__FILE__, $line=__LINE__) {
mysqli_query($this->connect, "LOCK TABLES $table_name WRITE");
$query = "DELETE FROM $table_name WHERE $where";
$tstart = normal_microtime();
$result = mysqli_query($this->connect, $query);
$this->queries[]=array('query'=>$query.";", 'time'=>sprintf("%f", normal_microtime() - $tstart));
if($result===false) $this->show_error(mysqli_error($this->connect)."in query</b><br><pre>".format_sql($query)."</pre><br><b>in file </b>$file <b>in line</b> $line");
mysqli_query($this->connect, 'UNLOCK TABLES');
}
Вот такая вот функция
Особо радует очень нужный LOCK и вывод сообщений об ошибках с подстановкой __LINE и __FILE__
+52.7
function connect() {
if (!isset($db)) {
$db = new db('localhost', 'root', '', 'news');
}
return $db;
}
А по задумке должен был быть синглетон...
+150
<?php
#-----------------------------------------------------#
# ********* WAP-MOTORS ********* #
# Made by : VANTUZ #
# E-mail : [email protected] #
# Site : http://pizdec.ru #
# WAP-Site : http://visavi.net #
# ICQ : 36-44-66 #
# Вы не имеете право вносить изменения в код скрипта #
# для его дальнейшего распространения #
#-----------------------------------------------------#
error_reporting(E_ALL);
ini_set('display_errors', true);
ini_set('html_errors', true);
ini_set('error_reporting', E_ALL);
/* @error_reporting(E_ALL ^ E_NOTICE);
@ini_set('display_errors', true);
@ini_set('html_errors', false);
@ini_set('error_reporting', E_ALL ^ E_NOTICE); */
@ini_set('url_rewriter.tags','');
@ini_set('session.use_trans_sid', 1);
@set_magic_quotes_runtime(0);
define('TIMESTART', microtime(1));
define('BOOKVERSION', '1.4');
define('VANTUZBOOK', TRUE);
session_name('SID');
session_start();
ob_start();
//-------------------------------- ФУНКЦИИ -------------------------------------//
function page_navigation($link, $posts, $start, $total, $koll = 4) {
if($total>0){
echo '<hr>Страницы: ';
$ba=ceil($total/$posts);
$ba2=$ba*$posts-$posts;
$min = $start - $posts * ($koll - 1);
$max = $start + $posts * $koll;
if($min<$total && $min>0){
if($min-$posts>0){
echo ' <span class="pagelink"><a href="'.$link.'start=0">1</a></span> ... ';
} else {
echo ' <span class="pagelink"><a href="'.$link.'start=0">1</a></span> ';
}}
for($i=$min; $i<$max;){
if($i<$total && $i>=0){
$ii=floor(1+$i/$posts);
if ($start==$i) {
echo ' <span class="pagecurrent">'.$ii.'</span> ';
} else {
echo ' <span class="pagelink"><a href="'.$link.'start='.$i.'">'.$ii.'</a></span> ';
}}
$i=$i+$posts;}
if($max<$total){
if($max+$posts<$total){
echo ' ... <span class="pagelink"><a href="'.$link.'start='.$ba2.'">'.$ba.'</a></span> ';
} else {
echo ' <span class="pagelink"><a href="'.$link.'start='.$ba2.'">'.$ba.'</a></span> ';
}}
}}
//----------------------- Функция экранирования основных знаков --------------------------//
function check($message){
$message = htmlspecialchars($message);
$message = str_replace("'","'",$message);
$message = str_replace("\"",""",$message);
$message = str_replace("\$","$",$message);
$message = str_replace("$","$",$message);
$message = str_replace("\\","\", $message);
$message = str_replace("^","^", $message);
$message = str_replace("%","%", $message);
$message = str_replace("`","", $message);
$message = stripslashes(trim($message));
$message = sqlite_escape_string($message);
return $message;
}
//---------------------- Аналог функции strlen для UTF-8 -----------------------//
function utf_strlen($str){
if (function_exists('mb_strlen')) return mb_strlen($str, 'utf-8');
if (function_exists('iconv_strlen')) return iconv_strlen($str, 'utf-8');
return strlen(utf8_decode($str));
}
//------------------ Функция определения реального IP --------------------//
if (isset($_SERVER['HTTP_X_FORWARDED_FOR']) && preg_match('|^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$|', $_SERVER['HTTP_X_FORWARDED_FOR'])){
$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];}
elseif(isset($_SERVER['HTTP_CLIENT_IP']) && preg_match('|^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$|', $_SERVER['HTTP_CLIENT_IP'])) {
говно ебучее нахуй еблядь вантуз растыка ебанная шпионов подсажэивает матор гавно ,бляяяяяяяяяядь нахерр
+144.3
$sub_total = $cost + $vvcost;
if($pickup_date[1] == 01) {
$pcentage = -15/100;
$sub_total2 = $sub_total * $pcentage;
$total = $sub_total + $sub_total2;
}
if($pickup_date[1] == 02) {
$pcentage = -110/100;
$sub_total2 = $sub_total * $pcentage;
$total = $sub_total + $sub_total2;
}
if($pickup_date[1] == 03) {
$pcentage = -5/100;
$sub_total2 = $sub_total * $pcentage;
$total = $sub_total + $sub_total2;}
if($$pickup_date[1] == 04) {
$pcentage = 5/100;
$sub_total2 = $sub_total * $pcentage;
$total = $sub_total + $sub_total2;}
if($pickup_date[1] == 05) {
$pcentage = 10/100;
$sub_total2 = $sub_total * $pcentage;
$total = $sub_total + $sub_total2;}
if($pickup_date[1] ==06) {
$pcentage = 12.5/100;
$sub_total2 = $sub_total * $pcentage;
$total = $sub_total + $sub_total2;}
if($pickup_date[1] ==07) {
$pcentage = 12.5/100;
$sub_total2 = $sub_total * $pcentage;
$total = $sub_total + $sub_total2;}
if($pickup_date[1] == 08) {
$total = $sub_total;}
if($pickup_date[1] ==09) {
$total = $sub_total;}
if($pickup_date[1] ==10) {
$pcentage = -5/100;
$sub_total2 = $sub_total * $pcentage;
$total = $sub_total + $sub_total2;}
if($pickup_date[1] ==11) {
$pcentage = -5/100;
$sub_total2 = $sub_total * $pcentage;
$total = $sub_total + $sub_total2;}
if($pickup_date[1] ==12) {
$total = $sub_total2 ;}
пипец
+136
вавап
о
вап
+139.5
<?php
$qw=chr(32);
$fp = fsockopen ("udp://77.239.192.43",28960, $errno, $errstr);
if (!$fp)
{
return("Error");
}
else
{
fwrite($fp,"яяяяinfo");
socket_set_timeout($fp,2,1);
$st=fread($fp,1);
print_r($st);
$r=socket_get_status($fp);
$r=$r["unread_bytes"];
@$st.=fread($fp,$r);
fclose($fp);
$tmp2=strpos($st,"sv_maxclients");
$tmp1=strpos($st,"clients")+9;
$players = 0;
$map=SubStr($st,0,StrPos($st,chr(0)));
$show_map="<img src=./maps/".$map.".jpg width=\"160\" height=\"120\">";
if (($tmp2-$tmp1) >= 0)
{
$players=substr($st,$tmp1,$tmp2-$tmp1);
$tmp2=strpos($st,"mapname")+8;
$map = substr($st,$tmp2,$tmp1-$tmp2-9);
}
}
echo "";
echo ("
<b><font color=\"#000000\">Call of Duty2</font></b>
<br>
<b><font color=\"#000000\">$show_map</font></b>
<br>
<b><font color=\"#000000\">Игроков: $players</font></b>
");
?>
говноскрипт мониторенга cod
+62.5
require_once ("lib/bsyscall.inc");
require_once ("lib/page.inc");
push ( "hello" );
push ( new Page() );
pop ( $r );
pop ($t);
page_init ($r, $t);
push ( $r );
Не говнокод, но поржать можно.
Запускал. Реально создает страницу:)
+144.1
$query = "SELECT `parent_id` FROM `items` WHERE `id`='".$_GET['id']."'";
$result = mysql_query($query);
$result = mysql_fetch_assoc($result);
$parent_id = $result[0]['parent_id']
$query = "SELECT `id` FROM `catalog` WHERE `id`='".$parent_id."'";
$result = mysql_query($query);
$result = mysql_fetch_assoc($result);
$catalog_id = $result[0]['id']
Кто-нибудь мне объяснит нахрена здесь второй цикл?
+51.5
/*
* adding data into report params array.
*/
$reportParams = array();
$reportParams += array(
'id' => $ID,
'view_class' => $viewClass,
'direct' => $direct,
'clone' => $clone
);
Суровые узбекские программисты делают так :)