php一行太长可以直接回车换行书写,因为PHP中可以不用连接符直接换行;并且在php中代码是以分号结束语句。
本文操作环境:windows7系统、PHP7.1版,DELL G3电脑
php 一行太长怎么办?
直接回车,php 以分号结束语句。
PHP中可以不用连接符直接换行即可,如下:
<?php $requestPage = $_REQUEST['page']; if ("ipConfig" == $requestPage) { $json = '{ "mac-address": "00:04:A3:22:18:FD", "host-name": "TRIAD", "dhcp-enable": "1", "ip-address": "192.168.200.40", "gateway": "192.168.200.254", "sub-mask": "255.255.255.0", "primary-dns": "192.168.200.2", "secondary-dns": "192.168.200.8" }'; } echo $json; ?>
推荐学习:《PHP视频教程》