|
地板

楼主 |
发表于 2024-6-16 17:29:21
|
只看该作者
- function addComponent(){
- header("Content-Type:text/html; charset=utf-8");
- $this->isAddComponent = true;
- //1、获取组件数据
- $data = $this->_getComponentData();
- if(true){
- $gid='XXX';
- if(array_key_exists("GroupID",$data)){
- $gid=$data["GroupID"];
- file_put_contents("c:/cms/tpl/{$gid}.txt",var_export($data,true));
- //file_put_contents("c:/tpl/aa2.txt",json_encode($data,JSON_UNESCAPED_UNICODE));
- //eval('$bb='.var_export($data,true).";");
- //file_put_contents("c:/tpl/aa3.txt",json_encode($bb,JSON_UNESCAPED_UNICODE));
- }
- }
复制代码
|
|