<?php
$all_fieds = get_post_custom( $post-> $id );
for ($i=1; $i<=5; $i++) {
if (array_key_exists('mod'.$i, $all_fieds)) :
?>
<li>
<div class="color_item_container">
<img src="<?php echo get_field("mod".$i); ?>" height="50" width="30" alt="alt">
</div>
</li>
<?php endif;
} ?>
$width = 300;
$height = 500;
$scale = 16/9;
$newWidth = 0;
$newHeight = 0;
if ($width / $height > $scale) {
$newWidth = $width;
$newHeight = round($width / $scale);
} else {
$newHeight = $height;
$newWidth = round($height * $scale);
}
echo($newWidth.'x'.$newHeight);
<?php
$file = json_decode(@file_get_contents('http://site.ru/api/56456456'));
$max = 0;
foreach($file->history as $obj){
if ($obj->stime >= strtotime(date("Y/m/d 00:00:00"))){
// Нужно узнать максимальное s_value при условии if
if ($obj->s_value > $max) {
$max = $obj->s_value;
}
}
}
echo($max);
?>