本文实例分析了Symfony2中被遗弃的getRequest()方法。分享给大家供大家参考,具体如下:
最近使用Symfony时,在NetBeans中发现getRequest()方法被遗弃了:
container->get('request_stack')->getCurrentRequest();
}
Google了一下,发现应该这么写:
get('foo');
$bar = $request->get('bar');
}
post方式请使用:
request->get('foo');
get方式请使用:
query->get('foo');
更多关于PHP相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》及《》
希望本文所述对大家PHP程序设计有所帮助。
原文链接:https://www.f2er.com/php/20204.html