2017年1月11日 星期三

(php)preg取代路徑(\)

$str = D:\UniServerZ\www\CodeIgniter226a\application\controllers\test_2.php

preg_replace('/\\\\/', '-', $str);
preg_replace("/\\\\/", '-', $str);

$str = D:/UniServerZ/www/CodeIgniter226a/application/controllers/test_2.php;
preg_replace('/\//', '-', $str);