Home CMS Tutorial DEDECMS How to run php script in DEDE template

How to run php script in DEDE template

Dec 26, 2019 am 09:25 AM
dede

How to run php script in DEDE template

How to run php script in DEDE template?

It is often necessary to directly process the underlying fields of the dede database. If there is no corresponding function in dede, then we have to use other methods to achieve it. As the title says, run the php script. and php variables, there is a good example below, interested friends can refer to

Recommended learning: 梦Weavercms

When using dede templates, often It will be necessary to directly process the underlying fields of the dede database. If there is no corresponding function in dede, we often need to find a way to deal with it.

Example: I want to take out the typeid field of a record in the data table addonimages, and then output the result of typeid multiplied by 2 in the browser. (Note: The typeid value here is 6)

At first I wrote this:

The code is as follows:

<body class="index"> 
{dede:loop table=&#39;dede_addonimages&#39; if=&#39;aid=94&#39;} 
[field:typeid runphp=&#39;yes&#39;] 
echo @me*2; 
[/field:typeid] 
{/dede:loop} 
</body>
Copy after login

The browser output is: 12 6

There is an extra 6 here. I think the reason is that [field:typeid] will execute the internal php statement first. When it reaches the line [/field:typeid], it will call the internal function and return directly [ field:typeid] The content of the underlying template, if you want to directly output 12, you can only add a custom function in the /include/extend.fuc.php file.

The code is as follows:

function abc($val){ 
return $val*2; 
}
Copy after login

Then the template is rewritten as:

The code is as follows:

<body class="index"> 
{dede:loop table=&#39;dede_addonimages&#39; if=&#39;aid=94&#39;} 
[field:typeid function="abc(@me)" /] 
{/dede:loop} 
</body>
Copy after login

The output result is: 12

In addition, Note that the variables in two pieces of PHP code in the same template are not common, that is to say, the scope of a certain variable in a piece of PHP code is limited to the short code.

Example:

The code is as follows:

<body class="index"> 
{dede:loop table=&#39;dede_addonimages&#39; if=&#39;aid=94&#39;} 
[field:typeid runphp=&#39;yes&#39;] 
echo $a=@me*2; 
[/field:typeid] 
{/dede:loop} 
{dede:php}var_dump($a);{/dede:php} 
</body>
Copy after login

The output result is: 12 6 NULL

If you want to use the above php script in the subsequent php script variables, I came up with a temporary solution, which is to use global variables to solve this problem.

The code is as follows:

<body class="index"> 
{dede:loop table=&#39;dede_addonimages&#39; if=&#39;aid=94&#39;} 
[field:typeid runphp=&#39;yes&#39;] 
$GLOBALS[&#39;a&#39;]=@me*2; 
[/field:typeid] 
{/dede:loop} 
{dede:php}echo $GLOBALS[&#39;a&#39;];{/dede:php} 
</body>
Copy after login

The output result is: 6 12 (because there is no echo in [field:typeid], so 6 is output directly)

The above is the detailed content of How to run php script in DEDE template. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)