函数问题
程序员文章站
2022-06-16 23:15:06
...
函数php代码:
function prin(){
echo 'a';
}
?>
页面代码:
require 'function1.php';
prin();
?>
打开下面的页面,在输出a之间有个空格,请问这个空格怎么去掉啊?
能解释下原因么,谢谢。
function prin(){
echo 'a';
}
?>
页面代码:
require 'function1.php';
prin();
?>
打开下面的页面,在输出a之间有个空格,请问这个空格怎么去掉啊?
回复讨论(解决方案)
去掉 function1.php 中的 ?>
改为
改为
能解释下原因么,谢谢。