RE: Re: high-bit characters

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Thanks, I'll check this out.

Till now I managed to get the result I wanted with :

<?php
	for ($i=0 ; $i < strlen($post_text) ; $i++) {
		$chr = $post_text{$i};
		$ord = ord($chr);
		if (($ord<32 or $ord>126) and ($ord != 13) and ($ord !=
10)){
			Echo "BAD CHAR is : " . $ord;
			break;
		}	
	}
?> 


berber

-----Original Message-----
From: news [mailto:news@xxxxxxxxxxxxx] On Behalf Of Abdullah Ramazanoglu
Sent: Friday, June 08, 2007 11:43 PM
To: php-general@xxxxxxxxxxxxx
Subject:  Re: high-bit characters

WeberSites LTD dedi ki:

> I'm trying to validate an RSS feed and getting errors about "high-bit 
> characters".
> How can I check if a string contains any high-bit characters?

if (preg_match("/[\x80-\xff]/", $string)) {
        # high-bit char found
} else {
        # no high-bit char
}

--
Abdullah Ramazanoglu
aramazan ÄT myrealbox D0T cöm

--
PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:
http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux