php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #14217 Strange bug with strtr() function
Submitted: 2001-11-25 10:26 UTC Modified: 2002-05-24 20:30 UTC
From: akul at otamedia dot com Assigned:
Status: Not a bug Package: Strings related
PHP Version: 4.0.6 OS: windows 98
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: akul at otamedia dot com
New email:
PHP Version: OS:

 

 [2001-11-25 10:26 UTC] akul at otamedia dot com
I have very simple function to convert some sumbols to underscores:

function to_tag($text)
{	
	$from=" \"\t\\/:#$%^&*()=+-!`'~?<>[],.";
	$retval=strtr($text,$from,str_repeat('_',strlen($from)));
              // debug output
	echo "\r\n<BR>[$text] >> [$retval]";
	return $retval;
}

And I have such string (first world is russian, Win-1251): "?????????  d'fusion"

On simple example all is Ok:
<?
	include_once('tag.inc.php');
	to_tag("?????????  d'fusion");
?>

X-Powered-By: PHP/4.0.7-dev
Content-type: text/html; charset=windows-1251


<BR>[?????????  d'fusion] >> [?????????__d_fusion]

But!
If this function called from more complex real code, ['] doesn't converted:

 Function using to_tag():

	function getPropXML($FID,$TID)
	{
		debug("getPropXML($FID,$TID)");
		$value=$this->getProp($FID,$TID);
		$target=$this->getCopy($TID);
		return t(to_tag($target->Name)
			,t('path',$this->getPath($TID))
			.t('value',cdata($value))
			.t('Parent',$this->getPath($target->ParentID)));
	}

Debug output for object with this string:
...
<BR>[????????] >> [????????]
<BR>[????????? d'fusion] >> [?????????_d'fusion]
<BR>[$25-70] >> [_25_70]
...

I tried to clear situation and find point of bug, but can't :(

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-05-24 20:30 UTC] derick@php.net
Thank you for taking the time to report a problem with PHP.
Unfortunately your version of PHP is too old -- the problem
might already be fixed. Please download a new PHP
version from http://www.php.net/downloads.php

If you are able to reproduce the bug with one of the latest
versions of PHP, please change the PHP version on this bug report
to the version you tested and change the status back to "Open".
Again, thank you for your continued support of PHP.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 16:01:28 2024 UTC