为了账号安全,请及时绑定邮箱和手机立即绑定

为什么php里每个词之间加空格呢?有什么作用?

为什么php里每个词之间加空格呢?有什么作用?

猛跑小猪 2022-05-19 17:15:35
print($tableau['cli_login'].$tableau['cli_name']'<br />'); }假如我想在每个login,name之间加n个空格,代码怎么打呢?谢谢
查看完整描述

2 回答

?
慕妹3146593

TA贡献1820条经验 获得超9个赞

 方法如下:
  <?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 ) );
  }
  ?>
  



查看完整回答
反对 回复 2022-05-23
?
暮色呼如

TA贡献1853条经验 获得超9个赞

html代码   这个就是空格 &@nbsp; 去掉@

查看完整回答
反对 回复 2022-05-23
  • 2 回答
  • 0 关注
  • 198 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信