|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-08-21 08:42 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 12:00:01 2025 UTC |
Description: ------------ When I updated from php 4 to php 5, one of my apps is giving this error: Warning: preg_replace_callback() [function.preg-replace-callback]: Unknown modifier '|' Reproduce code: --------------- $text = preg_replace_callback("{ (?:\\n\\n|\\A) ( # $1 = the code block -- one or more lines, starting with a space/tab (?: (?:[ ]\{$md_tab_width} | \\t) # Lines must start with a tab or a tab-width of spaces .*\\n+ )+ ) ((?=^[ ]{0,$md_tab_width}\\S)|\\Z) # Lookahead for non-space at line-start, or end of doc }xm", '_DoCodeBlocks_callback', $text);