$str = ' его строка';
$str = str_replace('его', '12345', $str);
$getFeed = file_get_contents('');
@$getFeed = file_get_contents('');
$getFeed = file_get_contents('');
$data['json'] = json_decode($getFeed);
$data['json'] = json_decode([]);
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Итоговая стоимость</title>
<style>
#totalCost{
width:250px;
height:400px;
background-color:#66CCFF;
border-radius:0 0 30px 30px;
font-family:Arial, Helvetica, sans-serif;
border-bottom:#3399CC 5px solid;
box-shadow:0 0 30px #003333;
position:absolute;
right:1%;
top:-382px;
}
#totalCost p{
color:white;
background-color:#3399CC;
text-align:center;
margin-top:382px;
border-radius:0 0 30px 30px;
padding:5px 0 5px 0;
cursor:pointer;
}
body{
margin:0;
}
</style>
<script src="js/jquery-3.2.1.min.js"></script>
</head>
<body>
<article id="totalCost">
<p>Click me!</p>
</article>
<script>
$(document).ready(function(){
$('#totalCost p').click(function(){
$('#totalCost').animate(
{
'top' : '0'
}, 300, 'easeOutBounce'
);
});
});
</script>
</body>
</html>