Can I include a PHP file in an SHTML file and store the result in a SHTML variable?

前端 未结 4 608
暖寄归人
暖寄归人 2021-01-26 04:12

I want to include a PHP file in an SHTML file and store the result in a SHTML variable and include different things depending on the result.

Example:
Assume the PHP

相关标签:
4条回答
  • 2021-01-26 04:27

    Doesn't sound possible. SHTML uses different methods of parsing the code so I don't think the PHP will run on the page to return a value to the SHTML. Why are you doing this though, why not use PHP outright?

    0 讨论(0)
  • 2021-01-26 04:29

    The way to execute PHP on a .shtml page is to modify your .htaccess file. This file may be hidden, so depending upon your FTP program you may have to modify some settings to see it. Then you just need to add this line for .shtml:

    AddType application/x-httpd-php .shtml
    

    If you only plan on including the PHP on one page, it is better to setup this way:

    <Files yourpage.shtml>
    AddType application/x-httpd-php .shtml
    </Files>
    

    This code will only make the PHP executable on the yourpage.shtml file, and not on all of your shtml pages.

    0 讨论(0)
  • 2021-01-26 04:34

    Let's say you have a template.shtml file with the text @@PHPVARHERE@@ somewhere in it.

    The user calls script.php?var=1. Not the script loads the contents of the template.shtml file (file_get_contents) and does a str_replace to replace @@PHPVARHERE@@ with $_REQUEST['var'] (in this case 1).

    Then the script outputs all of this to file1.shtml. If the file already existed use the existing file or overwrite it - whatever happens to be right in this situation.

    So the script dynamically creates the relevant shtml-files on the fly at runtime. Just add a Header('Relocate: file1.shtml'); and the script redirects the browser to the generated file.

    This is the nearest you can get from what I understood.

    0 讨论(0)
  • 2021-01-26 04:51

    The answer seems to be NO.

    NOTE: It should probably be implemented solely using PHP and a server directive to treat .shtml files as PHP.

    0 讨论(0)
提交回复
热议问题