《php经典实例》第一章 字符串

小白兔晒黑了 / 2024-07-20 / 原文

0 准备工作

0.1

pdf书的下载地址

链接:https://pan.baidu.com/s/1o_iwp-NbE8Npa1k0j3Nyng?pwd=yaad
提取码:yaad

 

phpstudy下载和安装

editplus下载和安装

 

0.2 环境启动

0.21

修改 httpd.conf

D:\phpstudy_pro\Extensions\Apache2.4.39\conf

1.0 概述

1.0.1 单引号字符串

<?php
//eg 1-1
print 'I have gone to the store';
echo "<br/ >";

print 'I\'ve gone to the store ';
echo "<br/ >";

print 'World you pay  $1.75 for 8 ounces of tap water? ';
echo "<br/ >";

print 'World you pay  $1.75 for 8 ounces of tap water? \n';
echo "<br/ >";

?>