>백엔드 개발 >PHP 튜토리얼 >PHP5读取EXCEL内容时的一个正则表达式函数解决办法

PHP5读取EXCEL内容时的一个正则表达式函数解决办法

WBOY
WBOY원래의
2016-06-13 10:03:38864검색

PHP5读取EXCEL内容时的一个正则表达式函数
用的是php-ExcelReader读取EXCEL,其中类里有下面一段代码,用来格式化EXCEL中的日期内容

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->/*if (divg_match("/[^hmsday\/\-:\s]/i", $formatstr) == 0) { // found day and time format$isdate = TRUE;$formatstr = str_replace('mm', 'i', $formatstr);$formatstr = str_replace('h', 'H', $formatstr);//echo "\ndate-time $formatstr \n";s}*/


但是错误提示是找不到divg_match()这个函数,有用过这个函数的吗?PHP怎么才能包含这个函数?


------解决方案--------------------
preg_match
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.