$path = parse_url('http://site.ru')['path']; // site.ru
$path = parse_url('http://site.ru/')['path']; // site.ru
$path = parse_url('https://site.ru/')['path']; // site.ru
$path = parse_url('//site.ru')['path']; // site.ru
$path = parse_url('//site.ru/')['path']; // site.ru
$path = parse_url('site.ru')['path']; // site.ru
setInterval
: https://jsfiddle.net/j29pf67j/1/var counter = document.getElementById("counter")
var hiddenText = document.getElementById("hidden-text")
var run = function(seconds) {
var interval = setInterval(function(){
if (seconds > 0) {
counter.textContent = seconds--;
}
else
{
hiddenText.style.display = "block";
counter.style.display = "none";
clearInterval(interval);
}
}, 1000)
}
app
// app/Some.php
namespace App;
class Some {
public function getValue() {
return "VALUE";
}
}
app/Providers/AppServiceProvider.php
.register
вписываем:public function register()
{
$this->app->bind('Some', function($app)
{
return new \App\Some;
});
}
}
@inject('some', 'Some')
<div>
Value: {{ $some->getValue() }}.
</div>
var items = [
{ name: 'Edward', value: 21 },
{ name: 'Sharpe', value: 37 },
{ name: 'And', value: 45 },
{ name: 'The', value: -12 },
{ name: 'Magnetic' },
{ name: 'Zeros', value: 37 }
];
items.sort(function (a, b) {
if (a.value > b.value) {
return 1;
}
if (a.value < b.value) {
return -1;
}
// a must be equal to b
return 0;
});
var index = jQuery('#side-nav a').index(this);
jQuery("#main-container-background").animate({ top: index * - 360 + '%' }, 'slow');
Валютный знак евро: “&eur;”.
Валютный знак евро: “€”.
<span class="animated fadeIn">Test 6</span>