|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-07-11 09:40 UTC] derick@php.net
[2001-07-11 13:54 UTC] jeroen@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 08:00:02 2025 UTC |
Hi! with 2 parameters all work fine. With 3 parameters function return: Example1: strtr("Function resut is BAD", "BAD", "all right") Result: 'Function resut is all' Example2: strtr("Function resut is BAD", "BAD", "ok") Result: 'Function resut is okD' Example3: strtr("Function resut is BAD", "BAD", "") Result: 'Function resut is BAD' Thx 4 attention