wget --quiet --mirror --convert-links --no-host-directories --no-parent --recursive --level=5 --execute robots=off --reject xml,json --base=https://api.jquery.com/ --directory-prefix=pages
Рассматриваем только домен без баз данных
Я правильно понял что планета должна иметь +-10 параметров для конструктора?
use (&$b)
class Scope
{
public int $b = 1;
}
class Scope2
{
public int $b = 2;
}
$callback = function (int $a) {
return $a + $this->b;
};
$scope = new Scope();
$scope2 = new Scope2();
var_dump($callback->call($scope, 3), $callback->call($scope2, 3));