|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-06-16 08:59 UTC] sander@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 12:00:01 2025 UTC |
the code fragment <?php $x = preg_split("/[ \t]/", "hello there"); echo "first=", $x[0], " second=", $x[1], "\n"; ?> works on solaris but not on windows binary distribution the error message is: Fatal error: Call to unsupported or undefined function preg_split() in D:\InetPub\scripts\nmtool\nmtool.php3 on line 2 It would appear that the regular expression functions are not available in the windows binary distribution. phpinfo says Regular Expressions Bundled regex library enabled The php3.ini file is the same as the example in the distribution except for the extension_dir setting.