本文介绍了如何在插件开发中的Wordpress中使用会话的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我刚开始编写插件...我有一个testplugin.php文件和一个ajax.php文件..
I am new to write a plugin ..I am having a testplugin.php file and a ajax.php file ..
我在testplugin.php中的代码是
My code in testplugin.php is
global $session;
print_r($abc); //$abc is array of my data ..
$session['arrayImg']=$abc; //saving data in session
echo $session['arrayImg']; //displayin "Array"
我的ajax.php由以下代码组成
And my ajax.php consists of following code
global $session;
$abc = $session['arrayImg'];
print_r ("abs== ".$abc); //displayin "abs== Array"
如果使用session_start();
我收到以下错误消息
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent
我只想将数据数组从插件的一个文件发送到另一个文件...
I just want to send array of data from one file of my plugin to another file ...
推荐答案
//在您的插件或主题函数中.php
// On your plugin or themes functions.php
function register_session(){
if( !session_id() )
session_start();
}
add_action('init','register_session');
//设置SESSION
数据-
$_SESSION['arrayImg'] = $abc;
//要获取有关ajax挂钩函数的数据-
// To get the data on ajax hooked function -
function resolve_the_ajax_request(){
if( !session_id())
session_start();
$abc = $_SESSION['arrayImg'];
}
这篇关于如何在插件开发中的Wordpress中使用会话的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!