Jump to content

kevk3v

New Members
  • Posts

    8
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

kevk3v's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Can you tell me how to do this on a host like byethost32.com, 000webhost.com or if i cant do it like that, the correct way? thanks...
  2. Sorry if this is the wrong section guys please move it to the correct place if this is not the correct place to ask. I am trying to make a website run on a non-standard port. Example by default mysite.com should have a port number of 80, so it runs on http://mysite.com:80 how do i make it run on any other port number such as 8080, 9055, 8090 or what ever non standard port i want? I have seen this on many websites before so it is possible. Please reply asap.
  3. What do you mean? Try setlocale (LC_ALL, array ('ru_RU.CP1251', 'rus_RUS.1251')); This will match words if you use a function like str_word_count() it will not translate them. it's not translating example i use <?php setlocale(LC_ALL, array('ru_RU.CP1251', 'rus_RUS.1251')); $text = "тест,test"; print_r(str_word_count($text, 1)); ?> it shows "test" instead of the russian word and привеÑ
  4. Actually it doesn't work at all, it only displays english i want it to display russian only, help me please
  5. it's not working with the russian edit: works with setlocale(LC_ALL, 'ru_RU.cp1251'); can anything go wrong using this?
  6. Thanks for showing me that function
  7. wow thanks ok lets say i have some russian text example $string = "текст///вау:?23прохладный"; how can i get preg match to work with the russian text? you got exactly what i was looking for but what if i want to find text in russian ?
  8. This is an example of what i'm trying to do... <?php $text = '%$%#$567hello!@#$%^& how@#$%%%$ are#$% you?'; //ok lets say i have this <- //i want to find the word in $text without having the word and then get it into a string //example: i have "h" and i want to find the word in $text that begins with "h" and get that word into a string ?> how do i do this?, sorry for my bad english btw...
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.