


Solution to the problem that Thinkphp template does not parse and output directly as it is_javascript skills
The example in this article describes the solution to the problem that the Thinkphp template is not parsed and directly outputs it as it is. Share it with everyone for your reference. The details are as follows:
1. Question:
I was learning thinkphp templates recently, but I found that the template page came out as it was. After some hard searching, I finally found the solution.
2. Solution:
Many people have encountered the same problem. The __ROOT__, __PUBLIC__, and __APP__ contained in the string assigned to the variable are replaced with real paths when displayed in the template. I discovered this problem while writing the Timi file management system.
After reading the source code from the file and outputting it to the page, I found that as long as it is a TP path character, it has been replaced with a real path.
For example:
After the page is output, it is displayed as the real path /public/.
During this period, I went through many attempts, such as base64 encryption when assigning, decoding when outputting the template, and found that it didn't work. Finally, I couldn't help but look at the source code of Tp, and found that in the last step of the display method, the "Tp path constant" was replaced with the real path by calling the tag method. Everything is normal before the render method.
I originally planned to change the source code to implement the following solution for children’s shoes:
Boss, is this a temporary solution or a final solution?
But I think it’s not bad to add a judgment in the assign() method,
If it is $this->assign('','',false), the content will not be replaced and will be output as is.
As a result, after reading this source code, I realized that it was not that easy and the changes were too big.
The last reply from another child pointed out the final solution:
"You can refer to the content here: http://www.jb51.net/article/54217.htm(template replacement)
With the template replacement rule, all __PUBLIC__ strings on the page will be replaced. If we really need to output the __PUBLIC__ string to the template, we can add replacement rules, for example:
'--PUBLIC--' => '__PUBLIC__', // Use new rules to output /Public string
)
After adding the replacement rule in this way, if we want to output the __PUBLIC__ string, we only need to add --PUBLIC-- in the template. The output method of other replacement strings is similar.
After adding the replacement rules in this way, if we want to output the __PUBLIC__ string, we only need to add --PUBLIC-- in the template. The output method of other replacement strings is similar.
So, the plan was released:
Configure in Tp’s configuration file config.php
//Timi file path restoration
'--PUBLIC--' => '__PUBLIC__',
'--APP--' => '__APP__',
'--URL--' => '__URL__',
'--ACTION--' => '__ACTION__',
'--SELF--' => '__SELF__',
'--INFO--' => '__INFO__',
'--EXT--' => '__EXT__'
),
When reading the source code, replace the "path constant character" __ROOT__ with --ROOT--:
$fileContent=htmlspecialchars(preg_replace('/__(.*?)__/is','--$1--',$fileContent));
Then the configuration of TMPL_PARSE_STRING is just replaced when the template is parsed, as shown in the figure below:
Ever since, this problem has been "temporarily" and "perfectly" solved.
I hope this article will be helpful to everyone’s ThinkPHP framework programming.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to specify the version of local packages in pnpm and monorepo projects When managing projects using pnpm and monorepo, you often encounter the need to share local areas between projects...

Why doesn't my code take effect when using RxJS to operate on streams? Learning RxJS...

GiteePages static website deployment failed: 404 error troubleshooting and resolution when using Gitee...

Detailed explanation of XPath search method under DOM nodes In JavaScript, we often need to find specific nodes from the DOM tree based on XPath expressions. If you need to...

Solution to the problem that the server file cannot be downloaded after SFTP.json configuration After configuring the sftp.json file, users may encounter the inability to download the target server file...

How to solve the problem of transparent image with blank projection transformation result in OpenCV.js. When using OpenCV.js for image processing, sometimes you will encounter the image after projection transformation...

The ElementPlus table component max-height property invalidation and solution when using Element...

About VueMaterialYear...
