Thomas: Funktionen innerhalb einer Funktion aufrufen

Hi!

ich hab zwei Funktionen:
function funktion1($whatever) { ....}
function funktion2($whatelse) {.... $text = $funktion1; ... }

Warum geht das nicht, oder wie kann ich innerhalb der Funktion eine andere Aufrufen?

lg
thomas

  1. Hello,

    function funktion2($whatelse) {.... $text = $funktion1; ... }

    was willst du damit bewirken? Warum schreibst du $funktion1?
    function f1($par) {
    ...
    }

    function f2() {
       $test = f1("abc");
    }

    MfG
    Rouven

    --
    -------------------
    Buy when there's blood running in the street and sell when everyone is pounding at your door, clawing to own your equities  --  Wisdom on Wallstreet
  2. Hi Thomas!

    Warum geht das nicht, oder wie kann ich innerhalb der Funktion eine andere Aufrufen?

    Das kannst nur du wissen.
    Ohne funktionierenden aussagekräftigen Code und entsprechende Fehlermeldung, die du bekomst, kann man dir nicht helfen.

    MfG H☼psel

    --
    "It's amazing I won. I was running against peace, prosperity, and incumbency."
    George W. Bush speaking to Swedish Prime Minister unaware a live television camera was still rolling, June 14, 2001
    Selfcode: ie:% fl:( br:> va:) ls:& fo:) rl:? n4:& ss:| de:] js:| ch:? sh:( mo:) zu:)
  3. hi,

    ich hab zwei Funktionen:
    function funktion1($whatever) { ....}
    function funktion2($whatelse) {.... $text = $funktion1; ... }

    Warum geht das nicht,

    Weil dir offenbar noch nicht mal ansatzweise klar ist, wie man Funktionen aufruft.

    oder wie kann ich innerhalb der Funktion eine andere Aufrufen?

    So, wie ausserhalb.

    gruß,
    wahsaga

    --
    /voodoo.css:
    #GeorgeWBush { position:absolute; bottom:-6ft; }
    1. omg, sry

      Das weiß ich schon, aber ich war gestern schon seehr müde und abgelenkt...

      Die Funktion hat einen Rückgabewert =>
      $text = funktion1($text);