|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-08-15 07:05 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 19:00:02 2025 UTC |
$data = eregi_replace("(.*)", prodwebsearch('\\1'), "$data"); function prodwebsearch($search) { # here search is fine # search = ultra 5 return prodsearch($search); } function prodsearch($search) { #here its not # search = \1 return $search; } (this is just an example) why does $search change to \1?