What is the .PHPS file extension? And what is it used for?

I make an online call when I have to register on the server with a username and password. I checked the element and found a comment in the HTML code that says the details are in 'page.phps' if it forgets the details. So I was wondering: what's the difference between .php and .phps ?

+5
source share
1 answer

If you use .php as the extension for the file, the server then interprets the code behind this script and returns the desired result.

While .phps just prints literally the contents of the script in color format, as shown below.

enter image description here

+6
source

Source: https://habr.com/ru/post/1262907/


All Articles