1) create a symfony 3.3 installation
2) doctrine:mapping:import from existing database
3) copy and paste Entity files in my new symfony 4 project (after change "AppBundle" with "App" in each one)
4) doctrine:schema:update --force in new symfony 4 project
el.find( selector ), как это делается в jQuery.
String.prototype.customFunction = function () {
console.log('кастомная функция');
};
let a = 'test';
a.customFunction();
"test".customFunction();
Колбек должен как бы ждать.
function callBack(func2){
setTimeout(function(){
console.log(1);
func2();
}, 500);
}
callBack(function(){
console.log(2);
});
function callBack(func2){
console.log(1);
func2();
}
callBack(function(){
console.log(2);
});
</body>
function crossJoin($array)
{
$result = [];
$current = array_splice($array, -1);
foreach ($current as $key => $values) {
foreach ((array) $values as $value) {
if (empty($array)) {
array_push($result, [$key => $value]);
} else {
foreach (crossJoin($array) as $temp) {
array_push($result, array_merge([$key => $value], $temp));
}
}
}
}
return $result;
}
crossJoin($a);
function Bird() {
// Код внутри функции Bird и есть constructor
console.log(this.constructor);
console.log('Код выполнится при создании нового объекта Bird');
}
let a = new Bird();
class Cat {
constructor() {
// Тело конструктора
console.log(this.constructor);
console.log('Аналогично коду сверху');
}
}
let b = new Cat();