- 1
- 2
- 3
- 4
ob_start();
require_once realpath('.').'/email-template.html';
$messageWithEwlTrailer = ob_get_contents();
ob_end_clean();
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
Всего: 8
+49
ob_start();
require_once realpath('.').'/email-template.html';
$messageWithEwlTrailer = ob_get_contents();
ob_end_clean();
no comments
+79
if ($type['my_event']) {
$select->where('1=1)))');
} else {
$select->where('1=1))');
}
Индусы..
+74
if($this->getRequest()->isPost()) {
$month = $this->getRequest()->getPost('month', null);
$year = $this->getRequest()->getPost('year', null);
} else {
$month = $this->getRequest()->getParam('month', null);
$year = $this->getRequest()->getParam('year', null);
}
Индусы, такие индусы.
+123
internal static string TryingDownloadAgainDotDotDot
Индусы суровы.
+165
//$viewPath = explode(DIRECTORY_SEPARATOR, $this->_helper->viewRenderer->getViewScript());
$viewPath = explode("/", $this->_helper->viewRenderer->getViewScript());
Первое закомментировали, второе вставили. Отличный рефакторинг!
+158
$userList = "";
foreach ($this->currentUsers as $k => $v)
{
$userList .= ($v->first_name . (empty($v->middle_name) ? "" : " " . $v->middle_name) . " " . $v->last_name . ", ");
}
$userList = substr($userList, 0, -2);
?>
<?= $userList ?>
Индусы отдыхают.
+165
$ext = substr($fileName, strrpos($fileName, '.') + 1);
Про pathinfo никто и не слышал видимо. Код написан недавно кем-то из команды)
+144
$start=microtime(true);
for($i=0;$i>1000;$i++)
{
$id = intval($_GET['id']);
}
$end=microtime(true);
$total1=$end-$start;
$start=microtime(true);
for($i=0;$i>1000;$i++)
{
$id = (int) $_GET['id'];
}
$end=microtime(true);
$total2=$end-$start;
echo '<br>---------------------------------------------------------------------------------------<br>';
echo "intval = $total1 <br> int = $total2"
LOL