Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Web ディレクトリに基づいて、別の php ページから symfony セッション データにアクセスしたいと考えています。
私は定義しました:
$this->getRequest()->getSession()->set('school', 'abc');
そして、Webディレクトリ(コントローラーではない)に存在する別のphpページでget( 'school')したい。Google で何時間も検索し、多くの代替手段を試しましたが、成功しませんでした。
このソリューションでこの問題を解決しました:
config.yml で:
framework: session: save_path: ~
次にsession_start();、プレーンなphpスクリプトで開始しました。
session_start();
次の方法でアクセスします。
$_SESSION['_sf2_attributes']['my_value'];
今は大丈夫です。