PHP基础

Posted lee-creed

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP基础相关的知识,希望对你有一定的参考价值。

1.数组与字符串之间的相互转换。

   (1)数组转为字符串

$array = [‘1‘,‘2‘,‘3‘,‘4‘];

$str = implode(",",$array );

dump($str);

    (2)有分割号的字符串转为数组

$str = ‘1,2,3,4,5‘;

$result = explode(‘,‘,$str);

dump($result);

2.php中转义反斜杠。

$str = ‘/uploads/images/20180411\gfhgfasdas26ds0dssd.jpg‘;

$re = str_replace(‘\\‘,‘/‘,$str);

dump($re);

//输出结果为:/uploads/images/20180411/gfhgfasdas26ds0dssd.jpg

 

以上是关于PHP基础的主要内容,如果未能解决你的问题,请参考以下文章

PHP基础入门---PHP数组实用基础知识

php基础教程:基础语法

php基础问题,赐教哈

web 开发基础php 开发基础快速入门 -PHP程序符号标记和程序注释的使用及空白符详解

php基础问题

web开发基础PHP快速入门-PHP运算符之算术运算符和字符串运算符详解