💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
[TOC] >[success] # PHP拆分写法 <br/> ~~~ 'PHP拼接标签数据'很麻烦要拼接好多'单引号',实际上一种'拆分'的写法,如下: ~~~ <br/> ~~~ <?php // 设置页面编码格式 header('content-type:text/html;charset=utf-8'); // 准备一些数据 $infoAll = array( array('name' => '苹果电脑', 'type' => '电子产品', 'size' => '128MB'), array('name' => '联想电脑', 'type' => '电子产品', 'size' => '256MB'), array('name' => '华硕电脑', 'type' => '电子产品', 'size' => '512MB'), array('name' => '笔记本电脑', 'type' => '电子产品', 'size' => '1024MB'), ); ?> <!-- 循环生成html --> <?php for($i=0;$i<count($infoAll);$i++){ ?> <h1><?php echo $infoAll[$i]['name'] ?></h1> <?php }?> ~~~