Forum FAQForum FAQSearchSearch MemberlistMemberlist Forum ignore listForum ignore list RegisterRegister ProfileProfile Log in to check your private messagesLog in to check your private messages Log inLog in
preg_replace i [] {} ...

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    mi3dot.org Forum Index -> Server-side
View previous topic :: View next topic  
Author Message
boby-s



Joined: 10 Apr 2004
Posts: 222
Location: Samobor< >Zagreb

PostPosted: 27.08.2005 12:02    Post subject: preg_replace i [] {} ... Add user to your forum ignore list Reply with quote

zašto mi se ovo događa?
zašto sa preg_replaceom nemogu zamjeniti [RIJEC_KOJU_TREBA_ZAMJENITI

look:
Code:

<?php
$rijec = 'The quick brown fox jumped over the lazy dog.';
$treba_zamjeniti[0] = '/quick/';
$treba_zamjeniti[1] = '/brown/';
$treba_zamjeniti[2] = '/dog/';
$zamjena[0] = 'brza';
$zamjena[1] = 'smeda';
$zamjena[2] = 'pas';
$rijec = preg_replace($treba_zamjeniti, $zamjena, $rijec);
echo $rijec;
?>
<!-- Ispis : The brza smeda fox jumped over the lazy pas.-->
<?php
$rijec = 'The [quick] [brown] fox jumped over the lazy [dog].';
$treba_zamjeniti[0] = '/[quick]/';
$treba_zamjeniti[1] = '/[brown]/';
$treba_zamjeniti[2] = '/[dog]/';
$zamjena[0] = 'brza';
$zamjena[1] = 'smeda';
$zamjena[2] = 'pas';
$rijec = preg_replace($treba_zamjeniti, $zamjena, $rijec);
echo $rijec;
?>
<!-- Ispis : The [smepasasmepasazasmepasasmepasazasmepasasmepasazasmepasasmepasazasmepasasmepasaza] [smepasasmepasasmepasasmepasasmepasa] fsmepasax jsmepasasmepasazampepas smepasavesmepasa the lazy [passmepasapas].-->
Back to top
View user's profile Send private message
lekke



Joined: 17 Jun 2004
Posts: 860
Location: 25th floor

PostPosted: 27.08.2005 12:35    Post subject: Add user to your forum ignore list Reply with quote

wild guess; probaj sa /\[quick\]/

_________________
You need more bass.
Back to top
View user's profile Send private message
boby-s



Joined: 10 Apr 2004
Posts: 222
Location: Samobor< >Zagreb

PostPosted: 27.08.2005 13:00    Post subject: Add user to your forum ignore list Reply with quote

wow Applause
radi!!
thx, man!
Back to top
View user's profile Send private message
Sulien



Joined: 04 Jan 2004
Posts: 2905
Location: Zagreb

PostPosted: 27.08.2005 14:22    Post subject: Add user to your forum ignore list Reply with quote

pazi na escapanje posebnih znakova i na kontekst u kojem su određeni znakovi posebni
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    mi3dot.org Forum Index -> Server-side All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group