首页 > 后端开发 > 正文

如何让php的输出文本自动换行

2024-11-03 00:02:24 | 我爱编程网

今天我爱编程网小编整理了如何让php的输出文本自动换行相关信息,希望在这方面能够更好帮助到大家。

本文目录一览:

如何让php的输出文本自动换行

PHP让数据 横4自动换行、每页显示10个、并分页显示、下面是我的基本代码、能显示

<?php
header("Content-Type: text/html; charset=gb2312");
include("conn.php");

$pageSize = 10;
$page = isset($_GET['p']) ? intval($_GET['p']) : 1 ;
$page = max(1, $page);
$pageIndex = $pageSize * ($page-1);

$sql="select count(*) as num from uu";
$pageQuery = mysql_query($sql);
$numRs = mysql_fetch_array($query);
$totalNum = $numRs['num'];

$sql="select * from uu order by id desc limit {$pageIndex}, {$pageSize}";
$query=mysql_query($sql);
?>
<table width=500 border="0" align="center" cellpadding="5" cellspacing="1" bgcolor="#add3ef">
    <tr>
        <th>ID</th>
        <th>用户名</th>
        <th>地 址</th>
        <th>姓 名</th>
    </tr>
<?php
$i = 0;
while($row = mysql_fetch_array($query)){
    $color = $i % 2 ? '#add3ef' : '#eff3ff';
?>
    <tr bgcolor="<?=$color;?>">
        <td><?=$row['id'];?></td>
        <td><?=$row['u_user'];?></td>
        <td><?=$row['u_add'];?></td>
        <td><?=$row['u_name'];?></td>
    </tr>
<?php
}
?>
</table>
<?php
$totalPages = ceil(1.0 * $totalNum / $pageSize);
for($i = 1; $i <= $totalPages; $i++) {
?>
    <div class="page">
        <div class="item_<?=$i;?>"> <?=$i;?> </div>
    </div>
<?php
}
?>

<style>
    .page div {display: block; width: 36px; height: 36px; padding: 5px; border: 1px solid #ccc; margin:0px 3px;}
</style>

如何让php的输出文本自动换行

PHP怎样才能让输出的内容自动换行

//这是一个算法描述,在文件为全英文状态下,可以正常通过。如果是中文的话,算法不变,长度计算和截取函数都要改,中文字符串的操作你可以参考这个
-04-07/16.html

我的答案
<?php
$str = file_get_contents('a.html');
$str_len = strlen($str);

for($i=0; $i<=$str_len; $i+=50){
$sub_str = substr($str,$i,50);
echo $sub_str."\n<br>";
}
?>

如何让php的输出文本自动换行我爱编程网

如何让php的输出文本自动换行

我爱编程网(https://www.52biancheng.com)小编还为大家带来如何让php的输出文本自动换行的相关内容。

  1. 自动换行有两种做法。a:程序计算字数,多少个数就加换行字符,b:交给html,css来控制。

  2. 主要介绍第2种方法,个人建议使用第2种,毕竟html专门负责这一类的。

    div.info{width:400px;margin:0 auto;line-height:30px;word-wrap : break-word ;}

  3. <div class="info">断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行</div>

以上,就是我爱编程网小编给大家带来的如何让php的输出文本自动换行全部内容,希望对大家有所帮助!更多相关文章关注我爱编程网:www.52biancheng.com

免责声明:文章内容来自网络,如有侵权请及时联系删除。
与“如何让php的输出文本自动换行”相关推荐