我是PHP的新手,我试图在数组中插入一个变量,但是它不起作用......
以下是代码:
$data = $RytvAPI->validateConfiguration(
array(
'relation' => 'posttitle',
'max' => '1',
'width' => 450,
'height' => 250,
'lang' => 'en',
'region' => 'us',
'class' => 'spacing-10',
'preview' => true
)
);
我想替换
'relation' => 'posttitle',
带
'relation' => $resultd,
$resultd
是一个简短的PHP代码
$my_title = wp_title('', false);
$data3 = "-";
$cat_name = $cat->cat_name;
$resultd = $cat_name.$data3.$my_title;
答案 0 :(得分:0)
设置$ resultd后添加此行。
试试这段代码。
$valConfig = array(
'relation' => 'posttitle',
'max' => '1',
'width' => 450,
'height' => 250,
'lang' => 'en',
'region' => 'us',
'class' => 'spacing-10',
'preview' => true
);
$my_title = wp_title('', false);
$data3 = "-";
$cat_name = $cat->cat_name;
$resultd = $cat_name.$data3.$my_title;
$valConfig['relation'] = $resultd;
$data = $RytvAPI->validateConfiguration($valConfig);