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方法代码