- 1
- 2
- 3
- 4
private function FunctionFalse()
{
return false;
}
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
Всего: 11
+174
private function FunctionFalse()
{
return false;
}
битрикс он такой
+157
.....
function init()
{
.......
$this->smenu = file_get_contents('http://'.$_SERVER['HTTP_HOST'].'/sitemenu/?tb=/lombards/?type_id=1');
$this->smenu2 = file_get_contents('http://'.$_SERVER['HTTP_HOST'].'/sitemenu/?tb=/lombards/?type_id=2');
$this->sform = file_get_contents('http://'.$_SERVER['HTTP_HOST'].'/searchform/?request=lombards&'.$_SERVER['QUERY_STRING']);
$this->bottom = file_get_contents('http://'.$_SERVER['HTTP_HOST'].'/bottom/');
.......
}
.....
Чистый ООП
P.S. Проект на zend framework
+147
$date_send = explode(".", $date_send);
$date_send = date("Y/m/d", mktime(0, 0, 0, $date_send[1], $date_send[0], $date_send[2]));
Так мы преобразуем даты
$date_send приходит в формате dd.mm.yyyy
+161
public function getOwnTimeFromTime($_site_end_time , $timeSyncOk = false)
{
$_site_end_time_msk = strtotime($_site_end_time);
$_site_end = date('Y-m-d H:i:s', $_site_end_time_msk);
$iter = 0;
preg_match ("|(\d+)-(\d+)-(\d+)T(\d+):(\d+):(\d+)|usi",$_site_end_time, $_Time1);
do {
$date2 = mktime($_Time1[4], $_Time1[5], $_Time1[6], $_Time1[2], $_Time1[3], $_Time1[1]);
if ((($_site_end_time_msk - $date2) == 3*60*60) || (($_site_end_time_msk - $date2) == 4*60*60)) {
$timeSyncOk = true;
}
$iter++;
} while ($iter<=20 && $timeSyncOk==false);
if ($timeSyncOk==false) {
$_site_end = date("Y-m-d H:i:s", parseDatetime($_site_end_time));
}
return $_site_end;
}
Шаманство
+167
function getItemsList ($category_id, $page_number, $count, $sort) {
ini_set ('display_errors', 'Off');
$arr = $this->grabber_api_class->loadItemsByCategoryID ($category_id, $page_number, $count, $sort);
ini_set ('display_errors', 'On');
return $arr;
}
+159
if (isset($_GET['prod_id'])) {
$_GET['prod_id'] = trim(preg_replace("|[^0-9]+|uis","", $_GET ['prod_id']));
}
if (isset($_REQUEST['prod_id'])) {
$_REQUEST['prod_id'] = trim(preg_replace("|[^0-9]+|uis","", $_REQUEST ['prod_id']));
}
if (isset($_POST['prod_id'])) {
$_POST['prod_id'] = trim(preg_replace("|[^0-9]+|uis","", $_POST ['prod_id']));
}
+161
$pay_id = 0;
$produce_id = 0;
$user_id = 0;
$add_time = 0;
$pr=substr_count($produce_id, ',');
$pa=substr_count($pay_id, ',');
$pu=substr_count($user_id, ',');
+167
$fileContent=file_get_contents($this->rootPath.'app/'.$this->interface.$this->handler.$this->p_h.'.php');
if (preg_match('/class\s{1,}\b'.$this->handler.$this->p_h.'\b/i', $fileContent,$matches)) {
.............
if (preg_match('/function\s{1,}\b'.$this->action.$this->p_a.'\b/i', $fileContent,$matches)) {
$class=$this->handler.$this->p_h;
$action=$this->action.$this->p_a;
$this->includeClass($class,$action);
return;
.............
Так мы проверяем наличие медота в классе ((
+163
if(preg_match("#puid=(\d+)#si",$_SERVER['REQUEST_URI'],$m)) {
$parent_user_id = $m[1];
................
Получаем $_GET
+159
function summArray($arr)
{
$summ = 0;
foreach($arr as $a) {
$summ += intval($a);
}
return $summ;
}