preg_match_all('/备案时间<\/td><tdclass="z-tl">(.*?)<\/td>/i', $data, $timeArr); 如何去除$timeArr字符串的\
可以使用PHP中的stripslashes()函数去除字符串中的反斜杠。例如:
$timeArr[0] = stripslashes($timeArr[0]);
原文地址: https://www.cveoy.top/t/topic/eXI 著作权归作者所有。请勿转载和采集!
安全问答是一个知识全球问答,包含丰富的问答知识
可以使用PHP中的stripslashes()函数去除字符串中的反斜杠。例如:
$timeArr[0] = stripslashes($timeArr[0]);
原文地址: https://www.cveoy.top/t/topic/eXI 著作权归作者所有。请勿转载和采集!