phpbar.de logo

Mailinglisten-Archive

Re: [php] Problem mit String-Vergleich
Archiv Mailingliste php_(at)_infosoc.uni-koeln.de

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

Re: [php] Problem mit String-Vergleich



pho-sim_(at)_pixelhouse.de schrieb:
> 
> hi
> 
> >$string1="abc";
> >$string2="def";
> >if($string1="abc" && $string2="def") echo("Stimmt !");
> >else echo("Stimmt nicht !");
> 
> wenn ich das so teste dan klappt das einwandfrei...
> <?
> $string1="abc";
> $string2="def";
> if($string1="abc" && $string2="def") echo("Stimmt !");
> else echo("Stimmt nicht !");
> ?>
> 

Es klappt insofern, als dass es "Stimmt !" ausgibt, aber die
Strings werden an KEINER Stelle verglichen.

Folgendes muesste AUCH "Stimmt !" ausgeben:

<?
$string1="abc";
$string2="def";
if($string1="xyz" && $string2="ghi") echo("Stimmt !");
else echo("Stimmt nicht !");
?>

Das ist aber wohl so nicht gemeint, oder ?

--
| Emilio Paolini <ep_(at)_IM-NETZ.de>......................... 13349 Berlin
| IM-NETZ Internet Services, Berlin............. http://www.IM-NETZ.de
| Telekom ...................... ++49 30 4511000 (Q) und 0177 451 2000

Home | Main Index | Thread Index

php::bar PHP Wiki   -   Listenarchive