当前位置:Gxlcms > PHP教程 > 函数问题

函数问题

时间:2021-07-01 10:21:17 帮助过:20人阅读

函数php代码:


function prin(){
echo 'a';
}
?>


页面代码:
require 'function1.php';
prin();
?>

打开下面的页面,在输出a之间有个空格,请问这个空格怎么去掉啊?


回复讨论(解决方案)

去掉 function1.php 中的 ?>

改为

改为




能解释下原因么,谢谢。

人气教程排行