Deprecated: Function eregi_replace() is deprecated in /home/ddat23/domains/dandat.cty.vn/public_html/includes/db/mysql.php on line 94
-------------------------------------------------------------------------
eregi_replace --------------- preg_replace
ereg_replace --------------- preg_replace
example:
$this->file_dst_name_body = ereg_replace('[^A-Za-z0-9_]', '', $this->file_dst_name_body);Thành $this->file_dst_name_body = preg_replace('/[^A-Za-z0-9_]/', '', $this->file_dst_name_body);
-------------------------------------------------------------------------
eregi --------------- preg_match
ereg --------------- preg_match
example:
eregi('\.([^\.]*$)', $this->file_src_name, $extension);Thành preg_match('/\.([^\.]*$)/i', $this->file_src_name, $extension);ereg('\.([^\.]*$)', $this->file_src_name, $extension);Thànhpreg_match('/\.([^\.]*$)/', $this->file_src_name, $extension); -------------------------------------------------------------------------while (preg_match("/<(\/?[[:alpha:]]*)[[:space:]]*([^>]*)>/i",$str,$reg)) {\ : trường hợp đặc biệt
Không có nhận xét nào:
Đăng nhận xét