Questions tagged «jrequest»

3
获取整个$ _POST的正确方法是什么?
在Joomla!2.5.x我可以简单地运行,JRequest::get('post');但是看到JRequestJoomla中已弃用了它!3.x我应该使用JInput。 在他们的那一刻,这是我用来获取整个代码的代码$_POST: $app = JFactory::getApplication(); $postData = $app->input->getArray(array_flip(array_keys($_POST))); 但这似乎很麻烦,如果与$app->input->set();我结合使用,我会遇到问题,我认为会有更好的方法吗? 在搜寻之前,我发现有人说你可以跑步 $app = JFactory::getApplication(); $postData = $app->input->post; 但是,当我尝试这样做时,我只是得到了该JInput对象的一个实例。
26 cms  php  jinput  jrequest 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.