How can I join '<' and 'div>'?
When I echo
<?php echo "<"."div>";?>
it returns an empty string.
How can I join '<' and 'div>'?
When I echo
<?php echo "<"."div>";?>
it returns an empty string.
收起
Because it is a HTML Tag. You cannot print it like this.
Still if you want to print it you can see @egig's suggestion. You can use echo "<"."div>"
报告相同问题?