module FooModule
def foo_method
puts 'TestModule'
end
end
class BarClass
extend FooModule
end
$info = pathinfo('/doc2/Тестовый документ.pdf');
echo $info['filename']; // Тестовый документ
[].map.call(document.querySelectorAll(".period"), el => el.innerHTML = el.textContent)
[].map.call(document.querySelectorAll(".period"), el => el.innerHTML = el.innerHTML.replace(/<.*?>/g, ''))
UPDATE mytable SET title = CASE
WHEN id = 1 THEN 'Great Expectations';
WHEN id = 2 THEN 'War and Peace';
ELSE title
END;
The ELSE title is very important, otherwise you will overwrite the rest of the table with NULL.
UPDATE my_table
SET my_field = REPLACE(my_field, 'http://', 'https://')
WHERE ...
SELECT count(id) FROM table WHERE visited >= CURRENT_DATE - INTERVAL 5 DAY
protect_from_forgery ...
Возникла задача - надо создать определенную сущность в базе данных с помощью скрипта.
Одним из вариантов решения - было бы создание отдельного контролллера
... png\"/></a> t "W A".</div>"
/sits_small.png\"/></a> t \"W A\"</div>";
public function comments()
{
return $this->hasMany('App\Comments');
}
Task::find($id)->comments()->count();
$count = 0;
foreach(Task::All() as $task)
{
$count += $task->comments()->count();
}
Foreach ($i in (Get-ChildItem D:\test\*.txt)) {(Get-Content $i) -replace "pattern1","" -replace "pattern2","pattern3" | Out-File D:\test\out.txt -Append}