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

 

 

3.Ajax提交数据到php方法

(1)html 代码

(2)php方法代码

 

posted @ 2018-04-11 09:39  丶长情  阅读(120)  评论(0编辑  收藏  举报