php里怎么每个词之间加空格??
php里怎么每个词之间加空格??print($tableau['cli_login'].$tableau['cli_name']'<br/>');}假如我想在每个logi...
php里怎么每个词之间加空格??
print($tableau['cli_login'].$tableau['cli_name']'<br />'); }
假如我想在每个login,name之间加n个空格,代码怎么打呢?谢谢 展开
print($tableau['cli_login'].$tableau['cli_name']'<br />'); }
假如我想在每个login,name之间加n个空格,代码怎么打呢?谢谢 展开
2个回答
展开全部
方法如下:
<?php
//Prepends whitespace to each line of a string
function white_space( $string, $whitespace )
{
//Create an array from the string, each key having one line
$string = explode( PHP_EOL, $string );
//Loop through the array and prepend the whitespace
foreach( $string as $line => $text )
{
$string[ $line ] = $whitespace . $text;
}
//Return the string
return( implode( PHP_EOL, $string ) );
}
?>
<?php
//Prepends whitespace to each line of a string
function white_space( $string, $whitespace )
{
//Create an array from the string, each key having one line
$string = explode( PHP_EOL, $string );
//Loop through the array and prepend the whitespace
foreach( $string as $line => $text )
{
$string[ $line ] = $whitespace . $text;
}
//Return the string
return( implode( PHP_EOL, $string ) );
}
?>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
html代码 这个就是空格 &@nbsp; 去掉@
更多追问追答
追问
print($tableau['cli_login']. &3sp$tableau['cli_name']'');
假如我想显示3个空格,是这样打么?但这样打出不来空格。。。求指导
追答
你这样是错误的 是这样写
echo $tableau['cli_login']."&@nbsp".$tableau['cli_name']."";
几个空格就加几个" &@nbsp" 去掉@ 空格属于html代码百度直接就显示空格了只能加个@
建议你用echo 不要用print 这个没echo效率高
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询