 
  
   
  
  Суть вопроса - ссылка на страницу формируется динамически JS кодом.
Как загрузить страницу выполняя JS на Python3?
selenium немножечко памяти кушает, а реакт при том, что только селениумом его и можно взять
если react - хаха
 
  
   
  
   
  
   
  
   
  
   
  
  <?php
use yii\helpers\Html;
use yii\widgets\ActiveForm;
$form = ActiveForm::begin();
foreach ($settings as $index => $setting) {
    echo $form->field($setting, "[$index]name");
}
ActiveForm::end(); 
  
   
  
  {% for product in products %} //
    {{ product.name }}           // не работает потому что не работает так в объектах
{% endfor %}class A {
public $prop;
}
$a = new A();
var_dump($a['prop']); // Работать не будет - обращение к объекту как к массиву
var_dump($a->prop); // Работать будет - обращение к свойству объекта 
  
   
  
   
  
   
  
   
  
  <?php
namespace Store\Toys;
use Phalcon\Mvc\Model;
class RobotParts extends Model
{
} 
  
  protected function createSmtpDriver()
    {
        $config = $this->app['config']['mail'];
        // The Swift SMTP transport instance will allow us to use any SMTP backend
        // for delivering mail such as Sendgrid, Amazon SES, or a custom server
        // a developer has available. We will just pass this configured host.
        $transport = SmtpTransport::newInstance(
            $config['host'], $config['port']
        );
        if (isset($config['encryption'])) {
            $transport->setEncryption($config['encryption']);
        }
        // Once we have the transport we will check for the presence of a username
        // and password. If we have it we will set the credentials on the Swift
        // transporter instance so that we'll properly authenticate delivery.
        if (isset($config['username'])) {
            $transport->setUsername($config['username']);
            $transport->setPassword($config['password']);
        }
        if (isset($config['stream'])) {
            $transport->setStreamOptions($config['stream']);
        }
        return $transport;
    }return [ ....
'stream' => [
    'ssl' => [
        'allow_self_signed' => true,
        'verify_peer' => false,
        'verify_peer_name' => false,
    ],
],
....
];