在函数 test() 中创建的数组。
然后我想在页面test.php上打印他们。
我的代码下来:
配置文件
function test(){
$str= array(
'items' => array(
0 => array(
'title' => 'Title',
'category' => 'Category name',
),
1 => array(
'title' => 'Title',
'category' => 'Category name',
),
),
'details' => array(
'firstname' => 'firstname',
'lastname' => 'lastname',
),
'Id' => $Id,
'OrderId' => 'fsdfsfdsrew'
);
$json = json_encode($str);
$base64 = base64_encode($json);
$sig = signMessage($base64, $secretPhrase);
}
测试.php
require_once("conf.php");
test();
print_r($str);
print_r($json);
print_r($base64);
print_r($sig);
请告诉我为什么代码不起作用?
请告诉我为什么不打印$str
, $json
,$base64
和$sig
?
怎么做?
最好没有全局参数。