> 백엔드 개발 > PHP 튜토리얼 > 템플릿 기능 가져오기

템플릿 기능 가져오기

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
풀어 주다: 2016-08-08 09:31:46
원래의
1033명이 탐색했습니다.
public function actionChangetemplate() {
                $status=true;
                $interactive_id=  (int)filter_input(INPUT_POST,'id');//post[id]
                $template_id= (int) filter_input(INPUT_POST, 'mb');            
		//找到页
		$interactives = Interactives::model ()->findByPk ( $interactive_id );
		//获取模板
		$interactiveTemplate = InteractiveTemplate::model ()->findByPk ( $template_id );
		//修改模板
		$interactives->template_id =$template_id;
                $interactives->save();

		// 根据用户选择的模板来设置不同的内容
		$template_info = $interactiveTemplate->template_content;	
		$interactiveContent = new InteractiveContent ();
		$interactivePic = new InteractivePic(); 
		//添加内容,以下根据content进行正则表达式匹配,生成相对应的content
		if (preg_match_all ( '/preview_t_[0-9]+/', $template_info, $arr )) {		
						//删除
			$res = InteractiveContent::model ()->deleteAll ("interactive_id=:ID",array(
					":ID"=>$interactive_id
			) );
			foreach ($arr[0] as $key=>$value){			
			$content = new InteractiveContent ();
			$content->interactive_id =$interactive_id;
			$content->color = "rgba(0,0,0,0.1)";
			$content->content = '<p style=\"text-align:left;\">\n\t<span style=\"color:#000000;line-height:1.5;font-size:24px;\"><strong>文本输入框<\/strong><\/span>\n<\/p>\n<p style=\"text-align:left;\">\n\t<span style=\"color:#000000;line-height:1.5;font-size:16px;\">您可以进行文本输入、复制、黏贴;调整字体大小、颜色、对齐、行间距;也可以对文本框本身设置相应的背景颜色以及透明度。<\/span>\n<\/p>';
			$content->c_time = date ( "y-m-d H:i:s" );
			$ret=$content->save ();
                        if($ret>0)//如果正确,则结果为true
                            $status=$status&true;
                        else
                            $status=$status&false;
			}			
		}
		//添加图片
		if (preg_match_all ( '/preview_p_[0-9]+/', $template_info, $arr )) {                    
			//删除
			$res = InteractivePic::model ()->deleteAll ("interactive_id=:ID",array(
					":ID"=>$_POST ['id']
			) );
			for($i = 1; $i <= count ( $arr[0] ); $i ++) {
				
			$interactivePic = new InteractivePic();
			
			$interactivePic->interactive_id = $_POST ['id'];
			$interactivePic->pic_scale = 2.2;
			$interactivePic->pic_src = "/images/editinteractive/pcover_000.jpg";
			$interactivePic->pic_width = 30;
			$interactivePic->pic_height =30;
			$interactivePic->pic_x = 0;
			$interactivePic->pic_y =0;
			$interactivePic->tag = $i;
			$interactivePic->c_time = date ( "y-m-d H:i:s" );			
			$ret=$interactivePic->save();
                        if($ret>0)//如果正确,则结果为true
                            $status=$status&true;
                        else
                            $status=$status&false;
			}
		}
		
		if (preg_match_all ( '/preview_s1_1_p[0-9]+/', $template_info, $arr )) {
		//删除
			$res = InteractivePic::model ()->deleteAll ("interactive_id=:ID",array(
					":ID"=>$_POST ['id']
			) );
			for($i = 1; $i <= count ( $arr[0] ); $i ++) {
				
			$interactivePic = new InteractivePic();
			
			$interactivePic->interactive_id = $_POST ['id'];
			$interactivePic->pic_scale = 2.2;
			$interactivePic->pic_src = "/images/editinteractive/pcover_000.jpg";
			$interactivePic->pic_width = 33;
			$interactivePic->pic_height =44;
			$interactivePic->pic_x = 33;
			$interactivePic->pic_y =44;
			$interactivePic->tag = 33;
			$interactivePic->c_time = date ( "y-m-d H:i:s" );			
			$ret=$interactivePic->save();
                        if($ret>0)//如果正确,则结果为true
                            $status=$status&true;
                        else
                            $status=$status&false;
			}
		}
		if (preg_match_all ( '/preview_s1_1_t[0-9]+/', $template_info, $arr )) {
		//删除
			$res = InteractiveContent::model ()->deleteAll ("interactive_id=:ID",array(
					":ID"=>$_POST ['id']
			) );
			foreach ($arr[0] as $key=>$value){
			
			$content = new InteractiveContent ();
			$content->interactive_id = $_POST ['id'];
			$content->color = "rgba(0,0,0,0.1)";
			$content->content = '<p style=\"text-align:left;\">\n\t<span style=\"color:#000000;line-height:1.5;font-size:24px;\"><strong>文本输入框<\/strong><\/span>\n<\/p>\n<p style=\"text-align:left;\">\n\t<span style=\"color:#000000;line-height:1.5;font-size:16px;\">您可以进行文本输入、复制、黏贴;调整字体大小、颜色、对齐、行间距;也可以对文本框本身设置相应的背景颜色以及透明度。<\/span>\n<\/p>';
			$content->c_time = date ( "y-m-d H:i:s" );
			$ret=$content->save ();
                        if($ret>0)//如果正确,则结果为true
                            $status=$status&true;
                        else
                            $status=$status&false;
			}
		}
		if (preg_match_all ( '/preview_s1_1_t_[0-9]+/', $template_info, $arr )) {
		//删除
			$res = InteractiveContent::model ()->deleteAll ("interactive_id=:ID",array(
					":ID"=>$_POST ['id']
			) );
			foreach ($arr[0] as $key=>$value){
			
			$content = new InteractiveContent ();
			$content->interactive_id = $_POST ['id'];
			$content->color = "rgba(0,0,0,0.1)";
			$content->content = '<p style=\"text-align:left;\">\n\t<span style=\"color:#000000;line-height:1.5;font-size:24px;\"><strong>文本输入框<\/strong><\/span>\n<\/p>\n<p style=\"text-align:left;\">\n\t<span style=\"color:#000000;line-height:1.5;font-size:16px;\">您可以进行文本输入、复制、黏贴;调整字体大小、颜色、对齐、行间距;也可以对文本框本身设置相应的背景颜色以及透明度。<\/span>\n<\/p>';
			$content->c_time = date ( "y-m-d H:i:s" );
			$ret=$content->save ();
                        if($ret>0)//如果正确,则结果为true
                            $status=$status&true;
                        else
                            $status=$status&false;
			}
		}
		

		if ($status) {
			echo json_encode ( array (
					//success
					'status' => 'success' 
			) );
		} else {
			echo json_encode ( array (
					'status' => 'fail' 
			) );
		}
	}
로그인 후 복사

위 내용은 내용적인 측면을 포함하여 템플릿 기능의 습득에 대해 소개하고 있으며, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿