Blogger Information
Blog 31
fans 0
comment 1
visits 21153
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
1. PHP对字符串的处理规则, 参照源码demo5.php中的内容完成作业 2018年4月11号作业
杜苏华迈专注于物联网可视化管理的博客
Original
673 people have browsed it

效果

作业效果.png

实例  PHP对字符串的处理规则

<meta charset="utf-8">
<?php
header("Content-type:text/html;charset=utf-8");
//输出字符串时,单引号与双引号的区别
//输出不同的内容,需要使用不同的包装器,或者叫定界符,单引号和双引号,就是字符串类型的包装器,这与js是一样的
//如果是纯字符串,推荐使用单引号,如果字符串有变量或者特殊字符的话
//记忆: 单引号原样输出,双引号会将内容解析输出
//那么:双引号会将哪些内容解析呢?二类: 1.变量, 2.特殊字符

//创建变量
$_name= "宜昌市时空电子科技有限公司";
$_type="网络电子科技公司";
$_Scope="网络工程、防盗报警、安防监控、智能IC卡、楼宇对讲等系统设计、施工";
$_date="2001年1月1日";
echo'<h2>公司简介</h2>';

echo nl2br("公司名称:\n{$_name}");
echo '<hr color="red">';
echo nl2br("公司类型:\n{$_type}");
echo '<hr color="green">';
echo nl2br("经营范围:\n{$_Scope}");

echo'<hr color="yellow">';
echo nl2br("成立时间:\n{$_date}");
echo '<hr color="skyblue">';

$heredoc=<<<HEREDOC
{$_name}系宜昌市工商局注册, 公司成立于{$_date}\n 并取得湖北省和宜昌市安防行业管理办公室认可的{$_Scope}资质单位,考勤、售饭、停车场、酒店门禁等)\可视与非可视楼宇对讲;通讯网络;公共广播等系统及相关管理系统的设备销售、工程设计安装及产品的技术咨询和维修服务为主的{$_type}
HEREDOC;
echo nl2br($heredoc);

运行实例 »

点击 "运行实例" 按钮查看在线实例





Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments